Skip to content

Commit

Permalink
Update to BlueMap 5.4 & Java 21 & Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Sep 29, 2024
1 parent 6b23d97 commit 8bdf060
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Install BMUtils
run: mvn clean install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Check tag with project version
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Generate JavaDoc
run: mvn javadoc:javadoc -Dmaven.test.skip=true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- name: Build with Maven
run: mvn test
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- Parent Project -->
<groupId>com.technicjelle</groupId>
<artifactId>BMUtils</artifactId>
<version>4.2</version>
<version>4.2.2</version>
</dependency>
<!-- The code of the benchmarks itself: -->
<dependency>
Expand Down Expand Up @@ -62,7 +62,7 @@
<jmh.version>1.37</jmh.version>

<!-- Java source/target to use for compilation. -->
<javac.target>11</javac.target>
<javac.target>21</javac.target>

<!-- Name of the benchmark Uber-JAR to generate. -->
<uberjar.name>benchmarks</uberjar.name>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

<groupId>com.technicjelle</groupId>
<artifactId>BMUtils</artifactId>
<version>4.2.1</version>
<version>4.2.2</version>

<properties>
<java.version>16</java.version>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -108,9 +108,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.bluecolored.bluemap</groupId>
<artifactId>BlueMapCommon</artifactId>
<version>5.2</version>
<groupId>de.bluecolored</groupId>
<artifactId>bluemap-common</artifactId>
<version>5.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 8bdf060

Please sign in to comment.