Revision 33428
Added by Marek Horst almost 10 years ago
pom.xml | ||
---|---|---|
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/xsd/maven-4.0.0.xsd"> |
|
3 |
<modelVersion>4.0.0</modelVersion> |
|
4 |
<groupId>eu.dnetlib</groupId> |
|
5 |
<artifactId>icm-iis-primer</artifactId> |
|
6 |
<version>0.0.1-SNAPSHOT</version> |
|
7 |
<packaging>jar</packaging> |
|
8 |
|
|
9 |
<name>icm-iis-classpath-primer</name> |
|
10 |
<url>http://maven.apache.org</url> |
|
11 |
|
|
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.1</version> |
|
6 |
<packaging>jar</packaging> |
|
7 |
|
|
8 |
<name>icm-iis-classpath-primer</name> |
|
9 |
<url>http://maven.apache.org</url> |
|
10 |
|
|
12 | 11 |
<scm> |
13 |
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-primer/trunk</developerConnection>
|
|
12 |
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-primer/tags/icm-iis-primer-0.0.1</developerConnection>
|
|
14 | 13 |
</scm> |
15 | 14 |
|
16 |
<dependencies> |
|
17 |
<dependency> |
|
18 |
<groupId>junit</groupId> |
|
19 |
<artifactId>junit</artifactId> |
|
20 |
<version>4.10</version> |
|
21 |
</dependency> |
|
22 |
<dependency> |
|
23 |
<groupId>commons-io</groupId> |
|
24 |
<artifactId>commons-io</artifactId> |
|
25 |
<version>2.4</version> |
|
26 |
</dependency> |
|
27 |
<dependency> |
|
28 |
<groupId>log4j</groupId> |
|
29 |
<artifactId>log4j</artifactId> |
|
30 |
<version>1.2.17</version> |
|
31 |
</dependency> |
|
32 |
<dependency> |
|
33 |
<groupId>org.apache.commons</groupId> |
|
34 |
<artifactId>commons-compress</artifactId> |
|
35 |
<version>1.4.1</version> |
|
36 |
</dependency> |
|
37 |
<dependency> |
|
38 |
<groupId>commons-lang</groupId> |
|
39 |
<artifactId>commons-lang</artifactId> |
|
40 |
<version>2.6</version> |
|
41 |
</dependency> |
|
42 |
</dependencies> |
|
43 |
<properties> |
|
44 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
45 |
</properties> |
|
46 |
|
|
47 |
<build> |
|
48 |
<plugins> |
|
49 |
<plugin> |
|
50 |
<groupId>org.apache.maven.plugins</groupId> |
|
51 |
<artifactId>maven-compiler-plugin</artifactId> |
|
52 |
<version>3.1</version> |
|
53 |
<configuration> |
|
54 |
<source>1.5</source> |
|
55 |
<target>1.5</target> |
|
56 |
</configuration> |
|
57 |
</plugin> |
|
58 |
</plugins> |
|
59 |
</build> |
|
60 |
</project> |
|
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.5</source> |
|
54 |
<target>1.5</target> |
|
55 |
</configuration> |
|
56 |
</plugin> |
|
57 |
</plugins> |
|
58 |
</build> |
|
59 |
</project> |
Also available in: Unified diff
[maven-release-plugin] prepare release icm-iis-primer-0.0.1