You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Irisflow流虹 edited this page Dec 23, 2022
·
1 revision
To add Prism Config to your project, you need to add following into your build.gradle(.kts):
Groovy DSL:
repositories {
// ...
maven {
name ="Nova Committee - Release"
url ="https://maven.nova-committee.cn/releases/"
}
maven {
name ="Nova Committee - Snapshot"
url ="https://maven.nova-committee.cn/snapshots/"
}
}
dependencies {
// ...
implementation "io.github.prismwork:prismconfig:0.2.0:all"// Or use the slim jar if you have the libraries included in your project (Gson, Jankson...)// implementation "io.github.prismwork:prismconfig:0.2.0"
}
Kotlin DSL:
repositories {
// ...
maven {
name ="Nova Committee - Release"
url = uri("https://maven.nova-committee.cn/releases/")
}
maven {
name ="Nova Committee - Snapshot"
url = uri("https://maven.nova-committee.cn/snapshots/")
}
}
dependencies {
// ...
implementation("io.github.prismwork:prismconfig:0.2.0:all")
// Or use the slim jar if you have the libraries included in your project (Gson, Jankson...)// implementation("io.github.prismwork:prismconfig:0.2.0")
}
For further usage, consider viewing the following pages: