|
6 | 6 |
|
7 | 7 | <groupId>com.github.clagomess</groupId>
|
8 | 8 | <artifactId>mod-plsql</artifactId>
|
9 |
| - <version>1.0-SNAPSHOT</version> |
| 9 | + <version>1.0.0</version> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <jetty.version>9.4.19.v20190610</jetty.version> |
| 13 | + </properties> |
10 | 14 |
|
11 | 15 | <dependencies>
|
12 | 16 | <!-- server -->
|
13 | 17 | <dependency>
|
14 | 18 | <groupId>org.glassfish.jersey.containers</groupId>
|
15 | 19 | <artifactId>jersey-container-servlet</artifactId>
|
16 |
| - <version>2.23</version> |
17 |
| - </dependency> |
18 |
| - <dependency> |
19 |
| - <groupId>org.glassfish.jersey.media</groupId> |
20 |
| - <artifactId>jersey-media-json-jackson</artifactId> |
21 |
| - <version>2.23</version> |
| 20 | + <version>2.29</version> |
22 | 21 | </dependency>
|
23 | 22 | <dependency>
|
24 | 23 | <groupId>org.eclipse.jetty</groupId>
|
25 | 24 | <artifactId>jetty-server</artifactId>
|
26 |
| - <version>9.3.9.v20160517</version> |
| 25 | + <version>${jetty.version}</version> |
27 | 26 | </dependency>
|
28 | 27 | <dependency>
|
29 | 28 | <groupId>org.eclipse.jetty</groupId>
|
30 | 29 | <artifactId>jetty-servlet</artifactId>
|
31 |
| - <version>9.3.9.v20160517</version> |
| 30 | + <version>${jetty.version}</version> |
32 | 31 | </dependency>
|
33 | 32 | <dependency>
|
34 | 33 | <groupId>org.eclipse.jetty</groupId>
|
35 | 34 | <artifactId>jetty-servlets</artifactId>
|
36 |
| - <version>9.3.9.v20160517</version> |
| 35 | + <version>${jetty.version}</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.glassfish.jersey.inject</groupId> |
| 39 | + <artifactId>jersey-hk2</artifactId> |
| 40 | + <version>2.29</version> |
37 | 41 | </dependency>
|
38 | 42 |
|
39 | 43 | <!-- log -->
|
40 | 44 | <dependency>
|
41 | 45 | <groupId>org.slf4j</groupId>
|
42 | 46 | <artifactId>slf4j-log4j12</artifactId>
|
43 |
| - <version>1.7.5</version> |
| 47 | + <version>1.7.26</version> |
44 | 48 | </dependency>
|
45 | 49 |
|
46 | 50 | <!-- jdbc -->
|
|
54 | 58 | <dependency>
|
55 | 59 | <groupId>org.projectlombok</groupId>
|
56 | 60 | <artifactId>lombok</artifactId>
|
57 |
| - <version>1.18.0</version> |
| 61 | + <version>1.18.8</version> |
58 | 62 | <scope>provided</scope>
|
59 | 63 | </dependency>
|
60 | 64 |
|
61 | 65 | <dependency>
|
62 | 66 | <groupId>com.fasterxml.jackson.core</groupId>
|
63 | 67 | <artifactId>jackson-annotations</artifactId>
|
64 |
| - <version>2.8.0</version> |
| 68 | + <version>2.9.9</version> |
65 | 69 | </dependency>
|
66 | 70 |
|
67 | 71 | <dependency>
|
68 | 72 | <groupId>com.fasterxml.jackson.core</groupId>
|
69 | 73 | <artifactId>jackson-databind</artifactId>
|
70 |
| - <version>2.8.11.1</version> |
| 74 | + <version>2.9.9.1</version> |
71 | 75 | </dependency>
|
72 | 76 | </dependencies>
|
73 | 77 |
|
|
78 | 82 | <plugin>
|
79 | 83 | <groupId>org.apache.maven.plugins</groupId>
|
80 | 84 | <artifactId>maven-compiler-plugin</artifactId>
|
| 85 | + <version>2.3.2</version> |
81 | 86 | <configuration>
|
82 | 87 | <source>8</source>
|
83 | 88 | <target>8</target>
|
|
0 commit comments