File tree Expand file tree Collapse file tree 3 files changed +45
-22
lines changed Expand file tree Collapse file tree 3 files changed +45
-22
lines changed Original file line number Diff line number Diff line change 3
3
4
4
name : Java CI with Maven
5
5
6
- on : [push, pull_request]
6
+ on : [ push, pull_request ]
7
7
8
8
jobs :
9
9
build :
10
10
11
11
runs-on : ubuntu-latest
12
12
13
13
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
Original file line number Diff line number Diff line change 79
79
<groupId >org.gaul</groupId >
80
80
<artifactId >modernizer-maven-plugin</artifactId >
81
81
<configuration >
82
+ <skip >true</skip >
82
83
<exclusionPatterns >
83
84
<exclusionPattern >org/joda/time/.*</exclusionPattern >
84
85
</exclusionPatterns >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.facebook.airlift</groupId >
7
7
<artifactId >airbase</artifactId >
8
- <version >95 </version >
8
+ <version >107 </version >
9
9
</parent >
10
10
11
11
<groupId >com.facebook.drift</groupId >
153
153
<version >${dep.airlift.version} </version >
154
154
</dependency >
155
155
156
- <dependency >
157
- <groupId >io.airlift</groupId >
158
- <artifactId >units</artifactId >
159
- <version >${dep.airlift.version} </version >
160
- </dependency >
161
-
162
156
<dependency >
163
157
<groupId >io.airlift</groupId >
164
158
<artifactId >parameternames</artifactId >
320
314
<artifactId >joda-time</artifactId >
321
315
<version >2.9.9</version >
322
316
</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 >
323
329
</dependencies >
324
330
</dependencyManagement >
325
331
326
332
<build >
327
333
<pluginManagement >
328
334
<plugins >
335
+ <plugin >
336
+ <groupId >org.gaul</groupId >
337
+ <artifactId >modernizer-maven-plugin</artifactId >
338
+ <version >3.1.0</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 >
329
351
<plugin >
330
352
<groupId >org.apache.maven.plugins</groupId >
331
353
<artifactId >maven-plugin-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments