Skip to content

Commit a586a78

Browse files
committed
Bump airbase
1 parent 1c51d99 commit a586a78

File tree

3 files changed

+45
-7
lines changed

3 files changed

+45
-7
lines changed

drift-codec-utils/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@
8484
</exclusionPatterns>
8585
</configuration>
8686
</plugin>
87+
<!-- Pull in from new repo https://github.com/prestodb/airlift/blob/master/drift/drift-codec-utils/pom.xml -->
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-dependency-plugin</artifactId>
91+
<configuration>
92+
<ignoredNonTestScopedDependencies>
93+
<ignoredNonTestScopedDependency>com.facebook.drift:drift-api</ignoredNonTestScopedDependency>
94+
</ignoredNonTestScopedDependencies>
95+
</configuration>
96+
</plugin>
8797
</plugins>
8898
</build>
8999
</project>

drift-idl-generator/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,18 @@
6262
<scope>test</scope>
6363
</dependency>
6464
</dependencies>
65+
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-dependency-plugin</artifactId>
71+
<configuration>
72+
<ignoredNonTestScopedDependencies>
73+
<dependency>io.airlift:units</dependency>
74+
</ignoredNonTestScopedDependencies>
75+
</configuration>
76+
</plugin>
77+
</plugins>
78+
</build>
6579
</project>

pom.xml

Lines changed: 21 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,32 @@
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.1.0</version>
339+
<configuration>
340+
<skip>true</skip>
341+
</configuration>
342+
</plugin>
329343
<plugin>
330344
<groupId>org.apache.maven.plugins</groupId>
331345
<artifactId>maven-plugin-plugin</artifactId>

0 commit comments

Comments
 (0)