1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >PronoMaster</groupId >
8
+ <artifactId >PronoMaster</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+ <packaging >war</packaging >
11
+
12
+ <properties >
13
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
+ <maven .compiler.source>1.8</maven .compiler.source>
15
+ <maven .compiler.target>1.8</maven .compiler.target>
16
+ </properties >
17
+
18
+ <dependencies >
19
+
20
+ <dependency >
21
+ <groupId >org.mariadb.jdbc</groupId >
22
+ <artifactId >mariadb-java-client</artifactId >
23
+ <version >2.3.0</version >
24
+ </dependency >
25
+
26
+ <dependency >
27
+ <groupId >de.mkammerer</groupId >
28
+ <artifactId >argon2-jvm</artifactId >
29
+ <version >2.2</version >
30
+ </dependency >
31
+
32
+ <dependency >
33
+ <groupId >com.fasterxml.jackson.core</groupId >
34
+ <artifactId >jackson-databind</artifactId >
35
+ <version >2.9.7</version >
36
+ </dependency >
37
+
38
+ <dependency >
39
+ <groupId >org.glassfish.jersey.containers</groupId >
40
+ <artifactId >jersey-container-servlet</artifactId >
41
+ <version >2.27</version >
42
+ </dependency >
43
+
44
+ <dependency >
45
+ <groupId >org.glassfish.jersey.inject</groupId >
46
+ <artifactId >jersey-hk2</artifactId >
47
+ <version >2.27</version >
48
+ </dependency >
49
+
50
+ <dependency >
51
+ <groupId >org.glassfish.jersey.media</groupId >
52
+ <artifactId >jersey-media-json-jackson</artifactId >
53
+ <version >2.27</version >
54
+ </dependency >
55
+
56
+ </dependencies >
57
+
58
+ <build >
59
+ <finalName >webservices</finalName >
60
+ </build >
61
+
62
+ </project >
0 commit comments