1 |
<?xml version="1.0" encoding="UTF-8"?> |
---|
2 |
<project |
---|
3 |
xmlns="http://maven.apache.org/POM/4.0.0" |
---|
4 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
5 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
---|
6 |
> |
---|
7 |
<modelVersion>4.0.0</modelVersion> |
---|
8 |
<prerequisites> |
---|
9 |
<maven>2.0.4</maven> |
---|
10 |
</prerequisites> |
---|
11 |
|
---|
12 |
<parent> |
---|
13 |
<groupId>org.intra-mart.jssp</groupId> |
---|
14 |
<artifactId>im-jssp-projects</artifactId> |
---|
15 |
<version>0.1.2</version> |
---|
16 |
</parent> |
---|
17 |
|
---|
18 |
<groupId>org.intra-mart.jssp</groupId> |
---|
19 |
<artifactId>im-jssp-sample</artifactId> |
---|
20 |
<version>0.1.2</version> |
---|
21 |
<packaging>war</packaging> |
---|
22 |
|
---|
23 |
<name>${artifactId}</name> |
---|
24 |
<url>http://oss.intra-mart.org/projects/im-jssp/maven/${artifactId}/</url> |
---|
25 |
|
---|
26 |
<repositories> |
---|
27 |
<repository> |
---|
28 |
<id>oss.intra-mart.org</id> |
---|
29 |
<name>intra-mart Open Source Software Community Maven2 Repository</name> |
---|
30 |
<url>http://oss.intra-mart.org/maven2</url> |
---|
31 |
</repository> |
---|
32 |
</repositories> |
---|
33 |
|
---|
34 |
<dependencies> |
---|
35 |
<dependency> |
---|
36 |
<groupId>org.intra-mart.jssp</groupId> |
---|
37 |
<artifactId>im-jssp</artifactId> |
---|
38 |
<version>0.1.2</version> |
---|
39 |
<scope>compile</scope> |
---|
40 |
</dependency> |
---|
41 |
<dependency> |
---|
42 |
<groupId>junit</groupId> |
---|
43 |
<artifactId>junit</artifactId> |
---|
44 |
<version>3.8.1</version> |
---|
45 |
<scope>test</scope> |
---|
46 |
</dependency> |
---|
47 |
</dependencies> |
---|
48 |
|
---|
49 |
</project> |
---|