Skip to content

Commit def36a1

Browse files
committed
fixup! build(deps): bump gradle-wrapper from 8.0.2 to 9.3.1
1 parent 868256f commit def36a1

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

build.gradle

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,20 @@ plugins {
1111

1212
repositories {
1313
mavenCentral()
14-
maven { url 'https://repo.jenkins-ci.org/public/' }
14+
maven {
15+
url = 'https://repo.jenkins-ci.org/public/'
16+
}
1517
}
1618

1719
group = "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

2329
dependencies {
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'

0 commit comments

Comments
 (0)