Skip to content

Commit 022a43c

Browse files
committed
Add docs folder and Gradle tasks
1 parent bc772f8 commit 022a43c

11 files changed

Lines changed: 2022 additions & 0 deletions

File tree

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ apply plugin: "org.graceframework.grace-web"
2626
apply plugin: "org.graceframework.asset-pipeline"
2727
apply plugin: "com.github.erdi.webdriver-binaries"
2828
apply plugin: "org.graceframework.grace-gsp"
29+
apply from: 'gradle/docs.gradle'
2930

3031
repositories {
3132
// mavenLocal()

docs/guide/introduction.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Grace Admin is a powerful and flexible, extensible administration framework and management console for Grace.

docs/guide/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
introduction: Introduction
2+
usage: Usage

docs/guide/usage.adoc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
== Getting Started
2+
3+
Add `admin` plugin to your `build.gradle`,
4+
5+
[source,groovy]
6+
----
7+
apply plugin: "org.graceframework.grace-gsp"
8+
9+
repositories {
10+
mavenCentral()
11+
maven {
12+
url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
13+
mavenContent {
14+
snapshotsOnly()
15+
}
16+
}
17+
}
18+
19+
dependencies {
20+
implementation "org.graceframework.plugins:dynamic-modules:1.0.0-RC1"
21+
implementation "org.graceframework.plugins:admin:$adminVersion"
22+
}
23+
24+
----

0 commit comments

Comments
 (0)