-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpom.xml
More file actions
43 lines (38 loc) · 1.12 KB
/
pom.xml
File metadata and controls
43 lines (38 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<project>
<!-- this is comment -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.cangksolutions</groupId>
<artifactId>cangk</artifactId>
<packaging>war</packaging>
<version>1.1-RELEASE</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>central</id>
<name>ip-172-31-40-203-releases</name>
<url>http://13.126.137.172:8081/artifactory/myrepo-test</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>ip-172-31-40-203-snapshots</name>
<url>http://13.126.137.172:8081/artifactory/myrepo-test</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>