Skip to content

Commit

Permalink
Bump Mockito and JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Nov 11, 2023
1 parent 73a7b87 commit 8dc391c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
- name: 'Checkout repo'
uses: actions/checkout@v1

- name: 'Set up JDK 1.8'
uses: actions/setup-java@v1
- name: 'Set up JDK'
uses: actions/setup-java@v3
with:
java-version: 1.8
java-version: 17

- name: 'Load Maven cache'
uses: actions/cache@v1
Expand Down
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.robvanderleek</groupId>
<artifactId>jlifx</artifactId>
Expand All @@ -22,7 +23,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>8</java.version>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
Expand Down Expand Up @@ -160,7 +161,7 @@
<format>xml</format>
<maxmem>256m</maxmem>
<aggregate>true</aggregate>
<check />
<check/>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -226,7 +227,19 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.2.0</version>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.14.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.14.9</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 8dc391c

Please sign in to comment.