Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bunch of dependencies #171

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17', '21']
java: ['21', '22', '23-ea']
steps:
- uses: actions/checkout@v4
- name: Setup JDK ${{ matrix.java }}
Expand Down
60 changes: 33 additions & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>156</version>
</parent>

<artifactId>slice</artifactId>
<version>2.3-SNAPSHOT</version>
<packaging>jar</packaging>
Expand All @@ -10,20 +16,16 @@
<description>Library for efficiently working with heap and off-heap memory</description>
<url>https://github.com/airlift/slice</url>

<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>136</version>
</parent>

<inceptionYear>2012</inceptionYear>

<properties>
<air.javadoc.lint>-missing</air.javadoc.lint>
<air.test.jvmsize>3584m</air.test.jvmsize>
<project.build.targetJdk>17</project.build.targetJdk>
<air.java.version>17</air.java.version>
<project.build.targetJdk>21</project.build.targetJdk>
<air.java.version>21</air.java.version>
<air.modernizer.java-version>8</air.modernizer.java-version>
<air.check.skip-spotbugs>true</air.check.skip-spotbugs>
<air.check.skip-pmd>true</air.check.skip-pmd>
</properties>

<dependencies>
Expand All @@ -36,7 +38,13 @@
<dependency>
<groupId>org.openjdk.jol</groupId>
<artifactId>jol-core</artifactId>
<version>0.16</version>
<version>0.17</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>

<!-- for testing -->
Expand All @@ -48,26 +56,20 @@
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>

Expand All @@ -92,13 +94,17 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>src/main/java/io/airlift/slice/Preconditions.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingOutputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataOutputStream.java</exclude>
</excludes>
<licenseSets>
<licenseSet>
<excludes combine.children="append">
<exclude>src/main/java/io/airlift/slice/Preconditions.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingOutputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataOutputStream.java</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
Expand Down