-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (34 loc) · 907 Bytes
/
build.gradle
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
26
27
28
29
30
31
32
33
34
35
36
37
38
plugins {
id 'net.researchgate.release' version '2.8.1'
id 'io.github.gradle-nexus.publish-plugin' version '1.0.0'
}
group 'com.prime157.docker'
version '0.2-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
release {
scmAdapters = [
net.researchgate.release.GitAdapter,
]
buildTasks = []
failOnPublishNeeded = false
git {
requireBranch = 'main'
pushToRemote = 'origin'
pushToBranchPrefix = ''
commitVersionFileOnly = false
signTag = false
}
}
nexusPublishing {
repositories {
sonatype { //only for users registered in Sonatype after 24 Feb 2021
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
}
}