|
52 | 52 | </developers> |
53 | 53 |
|
54 | 54 | <properties> |
55 | | - <revision>0.2.5-SNAPSHOT</revision> |
| 55 | + <revision>0.2.5</revision> |
56 | 56 | <slf4j.version>1.7.30</slf4j.version> |
57 | 57 | <project.current.year>2021</project.current.year> |
58 | 58 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
59 | 59 | <httpclient.version>4.5.13</httpclient.version> |
60 | 60 | <lz4.version>1.3.0</lz4.version> |
61 | | - <jackson.version>2.9.10</jackson.version> |
62 | | - <guava.version>19.0</guava.version> |
| 61 | + <jackson-core.version>2.9.10</jackson-core.version> |
| 62 | + <jackson-databind.version>2.9.10.8</jackson-databind.version> |
| 63 | + <guava.version>29.0-jre</guava.version> |
63 | 64 | <jaxb.version>2.3.1</jaxb.version> |
64 | | - <antlr4.version>4.9.1</antlr4.version> |
| 65 | + <jdk.version>1.7</jdk.version> |
65 | 66 | <testcontainers.version>1.15.1</testcontainers.version> |
66 | 67 | <testng.version>6.14.3</testng.version> |
67 | 68 | <mockito.version>1.10.19</mockito.version> |
|
104 | 105 | <dependency> |
105 | 106 | <groupId>com.fasterxml.jackson.core</groupId> |
106 | 107 | <artifactId>jackson-core</artifactId> |
107 | | - <version>${jackson.version}</version> |
| 108 | + <version>${jackson-core.version}</version> |
108 | 109 | </dependency> |
109 | 110 | <dependency> |
110 | 111 | <groupId>com.fasterxml.jackson.core</groupId> |
111 | 112 | <artifactId>jackson-databind</artifactId> |
112 | | - <version>${jackson.version}</version> |
| 113 | + <version>${jackson-databind.version}</version> |
113 | 114 | </dependency> |
114 | 115 | <dependency> |
115 | 116 | <groupId>com.google.guava</groupId> |
|
127 | 128 | <version>${jaxb.version}</version> |
128 | 129 | </dependency> |
129 | 130 |
|
130 | | - <dependency> |
131 | | - <groupId>org.antlr</groupId> |
132 | | - <artifactId>antlr4-runtime</artifactId> |
133 | | - <version>${antlr4.version}</version> |
134 | | - <scope>test</scope> |
135 | | - </dependency> |
136 | 131 | <dependency> |
137 | 132 | <groupId>org.slf4j</groupId> |
138 | 133 | <artifactId>slf4j-log4j12</artifactId> |
|
255 | 250 |
|
256 | 251 | <build> |
257 | 252 | <plugins> |
258 | | - <plugin> |
259 | | - <groupId>org.antlr</groupId> |
260 | | - <artifactId>antlr4-maven-plugin</artifactId> |
261 | | - <version>${antlr4.version}</version> |
262 | | - <configuration> |
263 | | - <arguments> |
264 | | - <argument>-visitor</argument> |
265 | | - </arguments> |
266 | | - </configuration> |
267 | | - <executions> |
268 | | - <!-- antlr4 is overkill but it can be leveraged to test our custom sql parser |
269 | | - <execution> |
270 | | - <id>antlr-4</id> |
271 | | - <goals> |
272 | | - <goal>antlr4</goal> |
273 | | - </goals> |
274 | | - </execution> |
275 | | - --> |
276 | | - <execution> |
277 | | - <id>antlr-test</id> |
278 | | - <configuration> |
279 | | - <sourceDirectory>${basedir}/src/test/antlr4</sourceDirectory> |
280 | | - <outputDirectory>${basedir}/target/generated-test-sources-antlr/antlr4</outputDirectory> |
281 | | - </configuration> |
282 | | - <phase>generate-test-sources</phase> |
283 | | - <goals> |
284 | | - <goal>antlr4</goal> |
285 | | - </goals> |
286 | | - </execution> |
287 | | - </executions> |
288 | | - </plugin> |
289 | | - <plugin> |
290 | | - <groupId>org.codehaus.mojo</groupId> |
291 | | - <artifactId>build-helper-maven-plugin</artifactId> |
292 | | - <version>${helper-plugin.version}</version> |
293 | | - <executions> |
294 | | - <execution> |
295 | | - <id>add-test-sources</id> |
296 | | - <phase>generate-test-sources</phase> |
297 | | - <goals> |
298 | | - <goal>add-test-source</goal> |
299 | | - </goals> |
300 | | - <configuration> |
301 | | - <sources> |
302 | | - <source>${basedir}/target/generated-test-sources-antlr/antlr4</source> |
303 | | - </sources> |
304 | | - </configuration> |
305 | | - </execution> |
306 | | - </executions> |
307 | | - </plugin> |
308 | 253 | <plugin> |
309 | 254 | <groupId>org.apache.maven.plugins</groupId> |
310 | 255 | <artifactId>maven-failsafe-plugin</artifactId> |
|
342 | 287 | <artifactId>maven-compiler-plugin</artifactId> |
343 | 288 | <version>${compiler-plugin.version}</version> |
344 | 289 | <configuration> |
345 | | - <source>7</source> |
346 | | - <target>7</target> |
| 290 | + <source>${jdk.version}</source> |
| 291 | + <target>${jdk.version}</target> |
347 | 292 | <showDeprecation>true</showDeprecation> |
348 | 293 | <showWarnings>true</showWarnings> |
349 | 294 | <fork>true</fork> |
|
0 commit comments