-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Grace Admin Plugin | ||
|
||
A powerful and flexible, extensible administration framework and management console for Grace. | ||
|
||
## Grace Version | ||
|
||
- Grace **2022.1.0** | ||
|
||
## Usage | ||
|
||
### Add `admin` plugin | ||
|
||
Add `admin` plugin to your `build.gradle`, | ||
|
||
```gradle | ||
apply plugin: "org.graceframework.grace-gsp" | ||
repositories { | ||
mavenCentral() | ||
maven { | ||
url "https://s01.oss.sonatype.org/content/repositories/snapshots/" | ||
mavenContent { | ||
snapshotsOnly() | ||
} | ||
} | ||
} | ||
dependencies { | ||
implementation "org.graceframework:grace-plugin-dynamic-modules" | ||
implementation "org.graceframework.plugins:admin:$adminVersion" | ||
} | ||
``` | ||
|
||
## Development | ||
|
||
### Build from source | ||
|
||
``` | ||
git clone https://github.com/grace-plugins/grace-admin.git | ||
cd grace-admin | ||
./gradlew publishToMavenLocal | ||
``` | ||
|
||
## What's New | ||
|
||
### 0.0.1-SNAPSHOT | ||
|
||
* Support Grace 2022.1.0+ | ||
|
||
|
||
## Known issues | ||
|
||
|
||
## Links | ||
|
||
- [Grace Framework](https://github.com/graceframework/grace-framework) | ||
- [Grace Plugins](https://github.com/grace-plugins) | ||
- [Grace Dynamic Menus Guide](https://github.com/grace-guides/gs-dynamic-menus) |