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