Line | |
---|
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 | <properties>
|
---|
13 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
14 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
15 | <jackson.version>2.7.4</jackson.version>
|
---|
16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
17 | </properties>
|
---|
18 |
|
---|
19 | <dependencies>
|
---|
20 | <dependency>
|
---|
21 | <groupId>tudelft.utilities</groupId>
|
---|
22 | <artifactId>accountmanager</artifactId>
|
---|
23 | <version>1.0.0</version>
|
---|
24 | </dependency>
|
---|
25 | <dependency>
|
---|
26 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
27 | <artifactId>jackson-databind</artifactId>
|
---|
28 | <version>${jackson.version}</version>
|
---|
29 | </dependency>
|
---|
30 | <!-- servlet api -->
|
---|
31 | <dependency>
|
---|
32 | <groupId>javax.servlet</groupId>
|
---|
33 | <artifactId>javax.servlet-api</artifactId>
|
---|
34 | <version>3.1.0</version>
|
---|
35 | <scope>provided</scope>
|
---|
36 | </dependency>
|
---|
37 |
|
---|
38 |
|
---|
39 | <dependency>
|
---|
40 | <groupId>junit</groupId>
|
---|
41 | <artifactId>junit</artifactId>
|
---|
42 | <version>3.8.1</version>
|
---|
43 | <scope>test</scope>
|
---|
44 | </dependency>
|
---|
45 | </dependencies>
|
---|
46 | <build>
|
---|
47 | <finalName>accountserver</finalName>
|
---|
48 | </build>
|
---|
49 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.