-
-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (22 loc) · 632 Bytes
/
Copy pathbuild.gradle
File metadata and controls
25 lines (22 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
id "maven-publish"
id "signing"
}
group = GROUP
version = VERSION_NAME
nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
username = project.findProperty("SONATYPE_NEXUS_USERNAME")
password = project.findProperty("SONATYPE_NEXUS_PASSWORD")
}
}
}
subprojects {
repositories {
mavenCentral()
}
}