Skip to content

Commit 0c4fb38

Browse files
committed
Changed publishing
1 parent e6b1427 commit 0c4fb38

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ plugins {
77

88
def groupId = 'com.techscode'
99
def artifactId = 'GradleBasePlugin'
10-
1110
// Versioning:
1211
// /---> Major Version - Increment this when you make a breaking change
1312
// | /---> Minor Version - Increment this when you add a new feature
1413
// | | /---> Patch Version - Increment this when you make a bug fix
15-
def versionNum = '5.0.7'
14+
def versionNum = '5.0.8'
1615

1716
group = groupId
1817
version = versionNum
@@ -40,9 +39,9 @@ dependencies {
4039
publishing {
4140
publications {
4241
maven(MavenPublication) {
43-
groupId
44-
artifactId
45-
versionNum
42+
groupId = groupId
43+
artifactId = artifactId
44+
version = versionNum
4645

4746
from components.java
4847
}
@@ -56,4 +55,4 @@ publishing {
5655
}
5756
}
5857
}
59-
}
58+
}

0 commit comments

Comments
 (0)