1
0
mirror of https://github.com/Dikootje/dlsync.git synced 2025-12-17 18:01:28 +00:00

Reverted java 17 to java 11

This commit is contained in:
Ytbarek Hailu
2025-08-13 14:06:18 -07:00
parent 9f6bc57dd4
commit 30e8e82b41
2 changed files with 20 additions and 14 deletions

View File

@@ -28,14 +28,13 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.38'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.junit.platform:junit-platform-launcher:1.13.4'
}
group = 'com.snowflake'
version = releaseVersion
description = 'dlsync'
java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
java.sourceCompatibility = JavaVersion.VERSION_11
jar {
dependsOn 'test'

29
pom.xml
View File

@@ -9,8 +9,8 @@
<version>2.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
@@ -46,12 +46,6 @@
<version>2.18.2</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
@@ -63,16 +57,29 @@
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.1</version>
<artifactId>junit-jupiter</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.1</version>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.13.4</version>
<scope>test</scope>
</dependency>