Skip to content

Commit 531fef2

Browse files
committed
Add docs
1 parent e59eee8 commit 531fef2

File tree

11 files changed

+2023
-0
lines changed

11 files changed

+2023
-0
lines changed

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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Grace Dynamic Modules Plugin (GDMP) offer new ways of creating modular and maintainable Grace applications.
2+
3+
It's a Grace plugin can implement one or more plugin modules to develop and extend Grace applications.
4+
5+
We can use Dynamic Modules to maximize the use of Grace plugins and create an open, shared, and reusable plugin market.

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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Add `dynamic-modules` plugin to your `build.gradle`,
2+
3+
[source,groovy]
4+
----
5+
apply plugin: "org.graceframework.grace-gsp"
6+
7+
repositories {
8+
mavenCentral()
9+
maven {
10+
url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
11+
mavenContent {
12+
snapshotsOnly()
13+
}
14+
}
15+
}
16+
17+
dependencies {
18+
implementation "org.graceframework:grace-plugin-api"
19+
implementation "org.graceframework.plugins:dynamic-modules:VERSION"
20+
}
21+
----

0 commit comments

Comments
 (0)