-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
41 lines (41 loc) · 1.44 KB
/
pom.xml
File metadata and controls
41 lines (41 loc) · 1.44 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>eu.telecomsudparis.csc4509</groupId>
<artifactId>csc4509-dm-Shihui-HUANG</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<repositories>
<repository>
<id>csc4509-dm-stable</id>
<name>CSC4509, DM library, stable</name>
<url>http://www-inf.telecom-sudparis.eu/COURS/CSC4509/maven-repository/stable/</url>
</repository>
<repository>
<id>csc4509-dm-snapshot</id>
<name>CSC4509, DM library, snapshot</name>
<url>http://www-inf.telecom-sudparis.eu/COURS/CSC4509/maven-repository/snapshot/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>eu.telecomsudparis.csc4509</groupId>
<artifactId>csc4509-dm-TestTCP</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>