mirror of
https://github.com/ProjectSWGCore/pswgcommon.git
synced 2026-01-15 23:04:19 -05:00
Idiomatic way of declaring dependencies in Gradle, so various regex-based parsers work, e.g. the Dependencies view in IntelliJ IDEA
This commit is contained in:
@@ -51,23 +51,16 @@ repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
dependencies {
|
||||
api(group="org.jetbrains", name="annotations", version="20.1.0")
|
||||
api(group="me.joshlarson", name="jlcommon", version="1.10.1")
|
||||
api(group="org.bouncycastle", name="bcprov-jdk18on", version="1.71")
|
||||
implementation(kotlin("stdlib"))
|
||||
implementation(group="org.mongodb", name="mongodb-driver-sync", version="3.12.2")
|
||||
}
|
||||
}
|
||||
test {
|
||||
dependencies {
|
||||
testImplementation(group="org.junit.jupiter", name="junit-jupiter-api", version="5.8.1")
|
||||
testImplementation(group="org.junit.jupiter", name="junit-jupiter-params", version="5.8.1")
|
||||
testRuntimeOnly(group="org.junit.jupiter", name="junit-jupiter-engine", version="5.8.1")
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
api(group="org.jetbrains", name="annotations", version="20.1.0")
|
||||
api(group="me.joshlarson", name="jlcommon", version="1.10.1")
|
||||
api(group="org.bouncycastle", name="bcprov-jdk18on", version="1.71")
|
||||
implementation(kotlin("stdlib"))
|
||||
implementation(group="org.mongodb", name="mongodb-driver-sync", version="3.12.2")
|
||||
|
||||
testImplementation(group="org.junit.jupiter", name="junit-jupiter-api", version="5.8.1")
|
||||
testImplementation(group="org.junit.jupiter", name="junit-jupiter-params", version="5.8.1")
|
||||
testRuntimeOnly(group="org.junit.jupiter", name="junit-jupiter-engine", version="5.8.1")
|
||||
}
|
||||
|
||||
tasks.withType<Jar> {
|
||||
|
||||
Reference in New Issue
Block a user