Skip to content

Commit

Permalink
#136 Use Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
jelemux committed Nov 29, 2024
1 parent 751e4af commit 7e5822d
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.version>0.8.5</jacoco.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<dependencies>
Expand Down Expand Up @@ -55,7 +55,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.3.3</version>
<version>5.14.2</version>
<scope>test</scope>
</dependency>

Expand All @@ -69,7 +69,7 @@
<dependency>
<groupId>com.lesfurets</groupId>
<artifactId>jenkins-pipeline-unit</artifactId>
<version>1.17</version>
<version>1.23</version>
<scope>test</scope>
</dependency>

Expand All @@ -88,6 +88,13 @@
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<id>groovy-plugins-release</id>
<url>https://groovy.jfrog.io/artifactory/plugins-release</url>
</pluginRepository>
</pluginRepositories>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
Expand All @@ -109,12 +116,12 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>3.7.0</version>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>3.0.8-01</version>
<version>3.0.23-02</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 7e5822d

Please sign in to comment.