Skip to content

Commit 94e4860

Browse files
committed
release 1.0.0
1 parent afdab2d commit 94e4860

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

pom.xml

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,45 @@
66

77
<groupId>com.github.clagomess</groupId>
88
<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>
1014

1115
<dependencies>
1216
<!-- server -->
1317
<dependency>
1418
<groupId>org.glassfish.jersey.containers</groupId>
1519
<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>
2221
</dependency>
2322
<dependency>
2423
<groupId>org.eclipse.jetty</groupId>
2524
<artifactId>jetty-server</artifactId>
26-
<version>9.3.9.v20160517</version>
25+
<version>${jetty.version}</version>
2726
</dependency>
2827
<dependency>
2928
<groupId>org.eclipse.jetty</groupId>
3029
<artifactId>jetty-servlet</artifactId>
31-
<version>9.3.9.v20160517</version>
30+
<version>${jetty.version}</version>
3231
</dependency>
3332
<dependency>
3433
<groupId>org.eclipse.jetty</groupId>
3534
<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>
3741
</dependency>
3842

3943
<!-- log -->
4044
<dependency>
4145
<groupId>org.slf4j</groupId>
4246
<artifactId>slf4j-log4j12</artifactId>
43-
<version>1.7.5</version>
47+
<version>1.7.26</version>
4448
</dependency>
4549

4650
<!-- jdbc -->
@@ -54,20 +58,20 @@
5458
<dependency>
5559
<groupId>org.projectlombok</groupId>
5660
<artifactId>lombok</artifactId>
57-
<version>1.18.0</version>
61+
<version>1.18.8</version>
5862
<scope>provided</scope>
5963
</dependency>
6064

6165
<dependency>
6266
<groupId>com.fasterxml.jackson.core</groupId>
6367
<artifactId>jackson-annotations</artifactId>
64-
<version>2.8.0</version>
68+
<version>2.9.9</version>
6569
</dependency>
6670

6771
<dependency>
6872
<groupId>com.fasterxml.jackson.core</groupId>
6973
<artifactId>jackson-databind</artifactId>
70-
<version>2.8.11.1</version>
74+
<version>2.9.9.1</version>
7175
</dependency>
7276
</dependencies>
7377

@@ -78,6 +82,7 @@
7882
<plugin>
7983
<groupId>org.apache.maven.plugins</groupId>
8084
<artifactId>maven-compiler-plugin</artifactId>
85+
<version>2.3.2</version>
8186
<configuration>
8287
<source>8</source>
8388
<target>8</target>

0 commit comments

Comments
 (0)