-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpom.xml
More file actions
38 lines (33 loc) · 1000 Bytes
/
pom.xml
File metadata and controls
38 lines (33 loc) · 1000 Bytes
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
<project>
<!-- this is comment -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.cangksolutions</groupId>
<artifactId>cangk</artifactId>
<packaging>jar</packaging>
<version>3.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>staragile-gamukart</id>
<name>staragile-gamukart</name>
<url>https://staragile-011941842853.d.codeartifact.ap-south-1.amazonaws.com/maven/gamukart/</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>