1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
---|
2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
---|
4 | <modelVersion>4.0.0</modelVersion>
|
---|
5 | <groupId>tudelft.utilities</groupId>
|
---|
6 | <artifactId>accountserver</artifactId>
|
---|
7 | <packaging>war</packaging>
|
---|
8 | <version>1.0.0</version>
|
---|
9 | <name>accountserver Maven Webapp</name>
|
---|
10 | <url>http://maven.apache.org</url>
|
---|
11 |
|
---|
12 |
|
---|
13 | <properties>
|
---|
14 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
15 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
16 | <jackson.version>2.7.4</jackson.version>
|
---|
17 | <passwd>${env.ARTIFACTORY_PASS}</passwd>
|
---|
18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
19 | <tomcat.version>8.5.20</tomcat.version>
|
---|
20 | </properties>
|
---|
21 |
|
---|
22 | <dependencies>
|
---|
23 | <dependency>
|
---|
24 | <groupId>tudelft.utilities</groupId>
|
---|
25 | <artifactId>accountmanager</artifactId>
|
---|
26 | <version>1.0.0</version>
|
---|
27 | </dependency>
|
---|
28 | <dependency>
|
---|
29 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
30 | <artifactId>jackson-databind</artifactId>
|
---|
31 | <version>${jackson.version}</version>
|
---|
32 | </dependency>
|
---|
33 | <!-- servlet api -->
|
---|
34 | <dependency>
|
---|
35 | <groupId>javax.servlet</groupId>
|
---|
36 | <artifactId>javax.servlet-api</artifactId>
|
---|
37 | <version>3.1.0</version>
|
---|
38 | <scope>provided</scope>
|
---|
39 | </dependency>
|
---|
40 |
|
---|
41 |
|
---|
42 | <!-- embedded-tomcat for testing the server -->
|
---|
43 | <dependency>
|
---|
44 | <groupId>org.apache.tomcat.embed</groupId>
|
---|
45 | <artifactId>tomcat-embed-core</artifactId>
|
---|
46 | <version>${tomcat.version}</version>
|
---|
47 | <scope>test</scope>
|
---|
48 | </dependency>
|
---|
49 | <dependency>
|
---|
50 | <groupId>org.apache.tomcat.embed</groupId>
|
---|
51 | <artifactId>tomcat-embed-jasper</artifactId>
|
---|
52 | <version>${tomcat.version}</version>
|
---|
53 | <scope>test</scope>
|
---|
54 | </dependency>
|
---|
55 | <dependency>
|
---|
56 | <groupId>org.apache.tomcat</groupId>
|
---|
57 | <artifactId>tomcat-jasper</artifactId>
|
---|
58 | <version>${tomcat.version}</version>
|
---|
59 | <scope>test</scope>
|
---|
60 | </dependency>
|
---|
61 | <dependency>
|
---|
62 | <groupId>org.apache.tomcat</groupId>
|
---|
63 | <artifactId>tomcat-jasper-el</artifactId>
|
---|
64 | <version>${tomcat.version}</version>
|
---|
65 | <scope>test</scope>
|
---|
66 | </dependency>
|
---|
67 | <dependency>
|
---|
68 | <groupId>org.apache.tomcat</groupId>
|
---|
69 | <artifactId>tomcat-jsp-api</artifactId>
|
---|
70 | <version>${tomcat.version}</version>
|
---|
71 | <scope>test</scope>
|
---|
72 | </dependency>
|
---|
73 | <dependency>
|
---|
74 | <groupId>com.neovisionaries</groupId>
|
---|
75 | <artifactId>nv-websocket-client</artifactId>
|
---|
76 | <version>2.6</version>
|
---|
77 | <scope>test</scope>
|
---|
78 | </dependency>
|
---|
79 |
|
---|
80 | <dependency>
|
---|
81 | <groupId>org.apache.tomcat.embed</groupId>
|
---|
82 | <artifactId>tomcat-embed-core</artifactId>
|
---|
83 | <version>${tomcat.version}</version>
|
---|
84 | <scope>test</scope>
|
---|
85 | </dependency>
|
---|
86 | <dependency>
|
---|
87 | <groupId>org.apache.tomcat</groupId>
|
---|
88 | <artifactId>tomcat-websocket</artifactId>
|
---|
89 | <version>${tomcat.version}</version>
|
---|
90 | <scope>test</scope>
|
---|
91 | </dependency>
|
---|
92 |
|
---|
93 | <!-- Test scope only -->
|
---|
94 | <dependency>
|
---|
95 | <groupId>junit</groupId>
|
---|
96 | <artifactId>junit</artifactId>
|
---|
97 | <version>4.13</version>
|
---|
98 | <scope>test</scope>
|
---|
99 | </dependency>
|
---|
100 | </dependencies>
|
---|
101 | <build>
|
---|
102 | <finalName>accountserver</finalName>
|
---|
103 | </build>
|
---|
104 | </project>
|
---|