-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (20 loc) · 603 Bytes
/
build.gradle
File metadata and controls
22 lines (20 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
subprojects {
apply from: "$rootDir/gradle/publishing.gradle"
group = 'com.github.bsideup.jabel'
repositories {
jcenter()
}
plugins.withType(MavenPublishPlugin) {
project.publishing {
repositories {
maven {
url System.getenv('GRADLE_PUBLISH_REPO_URL')
credentials {
username = System.getenv('GRADLE_PUBLISH_MAVEN_USER')
password = System.getenv('GRADLE_PUBLISH_MAVEN_PASSWORD')
}
}
}
}
}
}