File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,20 @@ plugins {
1111
1212repositories {
1313 mavenCentral()
14- maven { url ' https://repo.jenkins-ci.org/public/' }
14+ maven {
15+ url = ' https://repo.jenkins-ci.org/public/'
16+ }
1517}
1618
1719group = " com.lesfurets"
18- archivesBaseName = " jenkins-pipeline-unit"
20+ base {
21+ archivesName = " jenkins-pipeline-unit"
22+ }
1923
20- sourceCompatibility = 17
21- targetCompatibility = 17
24+ java {
25+ sourceCompatibility = JavaVersion . VERSION_17
26+ targetCompatibility = JavaVersion . VERSION_17
27+ }
2228
2329dependencies {
2430 implementation(' org.codehaus.groovy:groovy-all:2.4.21' )
@@ -73,7 +79,7 @@ publishing {
7379 artifact tasks. sourcesJar
7480 artifact tasks. javadocJar
7581 pom {
76- artifactId = " $project . archivesBaseName "
82+ artifactId = " $project . base . archivesName "
7783 packaging = ' jar'
7884 description = ' Jenkins Pipeline Unit testing framework'
7985 url = ' https://github.com/jenkinsci/JenkinsPipelineUnit'
You can’t perform that action at this time.
0 commit comments