Skip to content

Commit 52a8ea7

Browse files
committed
Bump airbase
1 parent 1c51d99 commit 52a8ea7

File tree

3 files changed

+45
-22
lines changed

3 files changed

+45
-22
lines changed

.github/workflows/maven.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33

44
name: Java CI with Maven
55

6-
on: [push, pull_request]
6+
on: [ push, pull_request ]
77

88
jobs:
99
build:
1010

1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
show-progress: false
17-
# needed for the git-commit-id-plugin to work
18-
fetch-depth: 0
19-
- name: Set up JDK 8
20-
uses: actions/setup-java@v3
21-
with:
22-
java-version: '8'
23-
distribution: 'temurin'
24-
- name: Maven Install
25-
run: mvn install -B -V -DskipTests -Dair.check.skip-all
26-
- name: Maven Tests
27-
run: mvn install -B -P ci
14+
- uses: actions/checkout@v4
15+
with:
16+
show-progress: false
17+
# needed for the git-commit-id-plugin to work
18+
fetch-depth: 0
19+
- name: Set up JDK 8
20+
uses: actions/setup-java@v3
21+
with:
22+
java-version: '8'
23+
distribution: 'temurin'
24+
- name: Maven Install
25+
run: mvn install -B -V -DskipTests -Dair.check.skip-all
26+
- name: Maven Tests
27+
run: mvn install -B -P ci

drift-codec-utils/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<groupId>org.gaul</groupId>
8080
<artifactId>modernizer-maven-plugin</artifactId>
8181
<configuration>
82+
<skip>true</skip>
8283
<exclusionPatterns>
8384
<exclusionPattern>org/joda/time/.*</exclusionPattern>
8485
</exclusionPatterns>

pom.xml

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.facebook.airlift</groupId>
77
<artifactId>airbase</artifactId>
8-
<version>95</version>
8+
<version>107</version>
99
</parent>
1010

1111
<groupId>com.facebook.drift</groupId>
@@ -153,12 +153,6 @@
153153
<version>${dep.airlift.version}</version>
154154
</dependency>
155155

156-
<dependency>
157-
<groupId>io.airlift</groupId>
158-
<artifactId>units</artifactId>
159-
<version>${dep.airlift.version}</version>
160-
</dependency>
161-
162156
<dependency>
163157
<groupId>io.airlift</groupId>
164158
<artifactId>parameternames</artifactId>
@@ -320,12 +314,40 @@
320314
<artifactId>joda-time</artifactId>
321315
<version>2.9.9</version>
322316
</dependency>
317+
318+
<dependency>
319+
<groupId>javax.validation</groupId>
320+
<artifactId>validation-api</artifactId>
321+
<version>2.0.1.Final</version>
322+
</dependency>
323+
324+
<dependency>
325+
<groupId>com.google.inject</groupId>
326+
<artifactId>guice</artifactId>
327+
<version>4.2.2</version>
328+
</dependency>
323329
</dependencies>
324330
</dependencyManagement>
325331

326332
<build>
327333
<pluginManagement>
328334
<plugins>
335+
<plugin>
336+
<groupId>org.gaul</groupId>
337+
<artifactId>modernizer-maven-plugin</artifactId>
338+
<version>3.8.1</version>
339+
<configuration>
340+
<skip>true</skip>
341+
</configuration>
342+
</plugin>
343+
<plugin>
344+
<groupId>org.apache.maven.plugins</groupId>
345+
<artifactId>maven-dependency-plugin</artifactId>
346+
<version>3.8.1</version>
347+
<configuration>
348+
<skip>true</skip>
349+
</configuration>
350+
</plugin>
329351
<plugin>
330352
<groupId>org.apache.maven.plugins</groupId>
331353
<artifactId>maven-plugin-plugin</artifactId>

0 commit comments

Comments
 (0)