Skip to content

Commit 87120e3

Browse files
committed
Update Gradle, junit, adjust Maven repositories
1 parent b6a1f74 commit 87120e3

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ dependencies {
1818
// optional dependency of commons-compress which is needed by JGit
1919
implementation 'org.tukaani:xz:1.9'
2020

21-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.0'
22-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.0'
23-
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.13.0'
21+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.1'
22+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.1'
23+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.13.1'
2424
}
2525

2626
test {
2727
useJUnitPlatform()
2828
}
2929

3030
wrapper {
31-
gradleVersion = '8.14.1'
31+
gradleVersion = '8.14.2'
3232
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

pom.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
<id>jgit-repository</id>
1414
<url>https://repo.eclipse.org/content/groups/releases/</url>
1515
</repository>
16+
<!-- For some reason, Maven Central needs to be manually specified here now -->
17+
<repository>
18+
<id>central1</id>
19+
<name>Central Repository</name>
20+
<url>https://repo.maven.apache.org/maven2</url>
21+
</repository>
1622
</repositories>
1723

1824
<!-- Core Library -->
@@ -59,19 +65,19 @@
5965
<dependency>
6066
<groupId>org.junit.jupiter</groupId>
6167
<artifactId>junit-jupiter-api</artifactId>
62-
<version>5.13.0</version>
68+
<version>5.13.1</version>
6369
<scope>test</scope>
6470
</dependency>
6571
<dependency>
6672
<groupId>org.junit.jupiter</groupId>
6773
<artifactId>junit-jupiter-engine</artifactId>
68-
<version>5.13.0</version>
74+
<version>5.13.1</version>
6975
<scope>test</scope>
7076
</dependency>
7177
<dependency>
7278
<groupId>org.junit.platform</groupId>
7379
<artifactId>junit-platform-launcher</artifactId>
74-
<version>1.13.0</version>
80+
<version>1.13.1</version>
7581
<scope>test</scope>
7682
</dependency>
7783
</dependencies>

0 commit comments

Comments
 (0)