1
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2
|
<modelVersion>4.0.0</modelVersion>
|
3
|
<groupId>eu.dnetlib</groupId>
|
4
|
<artifactId>icm-iis-primer</artifactId>
|
5
|
<version>0.0.3-SNAPSHOT</version>
|
6
|
<packaging>jar</packaging>
|
7
|
|
8
|
<name>icm-iis-classpath-primer</name>
|
9
|
<url>http://maven.apache.org</url>
|
10
|
|
11
|
<scm>
|
12
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/icm-iis-primer/trunk</developerConnection>
|
13
|
</scm>
|
14
|
|
15
|
<dependencies>
|
16
|
<dependency>
|
17
|
<groupId>junit</groupId>
|
18
|
<artifactId>junit</artifactId>
|
19
|
<version>4.10</version>
|
20
|
</dependency>
|
21
|
<dependency>
|
22
|
<groupId>commons-io</groupId>
|
23
|
<artifactId>commons-io</artifactId>
|
24
|
<version>2.4</version>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>log4j</groupId>
|
28
|
<artifactId>log4j</artifactId>
|
29
|
<version>1.2.17</version>
|
30
|
</dependency>
|
31
|
<dependency>
|
32
|
<groupId>org.apache.commons</groupId>
|
33
|
<artifactId>commons-compress</artifactId>
|
34
|
<version>1.4.1</version>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>commons-lang</groupId>
|
38
|
<artifactId>commons-lang</artifactId>
|
39
|
<version>2.6</version>
|
40
|
</dependency>
|
41
|
</dependencies>
|
42
|
<properties>
|
43
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
44
|
</properties>
|
45
|
|
46
|
<build>
|
47
|
<plugins>
|
48
|
<plugin>
|
49
|
<groupId>org.apache.maven.plugins</groupId>
|
50
|
<artifactId>maven-compiler-plugin</artifactId>
|
51
|
<version>3.1</version>
|
52
|
<configuration>
|
53
|
<source>1.6</source>
|
54
|
<target>1.6</target>
|
55
|
</configuration>
|
56
|
</plugin>
|
57
|
</plugins>
|
58
|
</build>
|
59
|
|
60
|
<distributionManagement>
|
61
|
<repository>
|
62
|
<id>dnet45-bootstrap-release</id>
|
63
|
<url>
|
64
|
http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release
|
65
|
</url>
|
66
|
</repository>
|
67
|
</distributionManagement>
|
68
|
</project>
|