File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,21 @@ plugins {
2
2
id ' io.github.gradle-nexus.publish-plugin' version " 1.1.0"
3
3
}
4
4
5
+ group = ' de.undercouch'
6
+ version = ' 3.0.0-alpha.6'
7
+
8
+ nexusPublishing {
9
+ repositories {
10
+ sonatype()
11
+ }
12
+ }
13
+
5
14
subprojects {
6
15
apply plugin : ' jacoco'
7
16
apply plugin : ' java'
8
17
9
- version = ' 3.0.0-alpha.6 '
10
- group = ' de.undercouch '
18
+ group = rootProject . group
19
+ version = rootProject . version
11
20
sourceCompatibility = ' 1.8'
12
21
targetCompatibility = ' 1.8'
13
22
@@ -17,7 +26,7 @@ subprojects {
17
26
url ' https://oss.sonatype.org/content/groups/public'
18
27
}
19
28
}
20
-
29
+
21
30
dependencies {
22
31
testImplementation ' junit:junit:4.13.2'
23
32
}
Original file line number Diff line number Diff line change @@ -106,9 +106,3 @@ tasks.withType(Sign) {
106
106
// only sign release artifacts and not snapshots
107
107
onlyIf { isReleaseVersion }
108
108
}
109
-
110
- nexusPublishing {
111
- repositories {
112
- sonatype()
113
- }
114
- }
You can’t perform that action at this time.
0 commit comments