1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<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/maven-v4_0_0.xsd">
|
3
|
|
4
|
<groupId>eu.dnetlib</groupId>
|
5
|
<version>0.0.3-SNAPSHOT</version>
|
6
|
<modelVersion>4.0.0</modelVersion>
|
7
|
<artifactId>icm-iis-properties-maven-plugin</artifactId>
|
8
|
<packaging>maven-plugin</packaging>
|
9
|
|
10
|
<scm>
|
11
|
<developerConnection>
|
12
|
scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/icm-iis-properties-maven-plugin/trunk
|
13
|
</developerConnection>
|
14
|
</scm>
|
15
|
|
16
|
<properties>
|
17
|
</properties>
|
18
|
|
19
|
<repositories>
|
20
|
<repository>
|
21
|
<id>dnet-deps</id>
|
22
|
<name>dnet-dependencies</name>
|
23
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
24
|
<layout>default</layout>
|
25
|
</repository>
|
26
|
</repositories>
|
27
|
|
28
|
<dependencies>
|
29
|
<dependency>
|
30
|
<groupId>org.apache.maven</groupId>
|
31
|
<artifactId>maven-plugin-api</artifactId>
|
32
|
<version>2.0</version>
|
33
|
</dependency>
|
34
|
<dependency>
|
35
|
<groupId>org.apache.maven</groupId>
|
36
|
<artifactId>maven-project</artifactId>
|
37
|
<version>2.0</version>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>org.kuali.maven.plugins</groupId>
|
41
|
<artifactId>properties-maven-plugin</artifactId>
|
42
|
<version>1.3.2</version>
|
43
|
</dependency>
|
44
|
</dependencies>
|
45
|
<build>
|
46
|
<directory>target</directory>
|
47
|
<outputDirectory>target/classes</outputDirectory>
|
48
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
49
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
50
|
<plugins>
|
51
|
<plugin>
|
52
|
<groupId>org.apache.maven.plugins</groupId>
|
53
|
<artifactId>maven-compiler-plugin</artifactId>
|
54
|
<version>2.3.2</version>
|
55
|
<configuration>
|
56
|
<source>1.6</source>
|
57
|
<target>1.6</target>
|
58
|
</configuration>
|
59
|
</plugin>
|
60
|
<plugin>
|
61
|
<groupId>org.apache.maven.plugins</groupId>
|
62
|
<artifactId>maven-source-plugin</artifactId>
|
63
|
<version>2.1.2</version>
|
64
|
<executions>
|
65
|
<execution>
|
66
|
<id>attach-sources</id>
|
67
|
<phase>verify</phase>
|
68
|
<goals>
|
69
|
<goal>jar-no-fork</goal>
|
70
|
</goals>
|
71
|
</execution>
|
72
|
</executions>
|
73
|
</plugin>
|
74
|
<plugin>
|
75
|
<groupId>org.apache.maven.plugins</groupId>
|
76
|
<artifactId>maven-surefire-plugin</artifactId>
|
77
|
<version>2.4.3</version>
|
78
|
<configuration>
|
79
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
80
|
<includes>
|
81
|
<include>**/*Test.java</include>
|
82
|
</includes>
|
83
|
<excludes>
|
84
|
<exclude>**/AllTests.java</exclude>
|
85
|
<exclude>**/Abstract*Test.java</exclude>
|
86
|
</excludes>
|
87
|
</configuration>
|
88
|
</plugin>
|
89
|
<plugin>
|
90
|
<groupId>org.apache.maven.plugins</groupId>
|
91
|
<artifactId>maven-javadoc-plugin</artifactId>
|
92
|
<version>2.9</version>
|
93
|
<configuration>
|
94
|
<detectLinks>true</detectLinks>
|
95
|
<additionalparam>-Xdoclint:none</additionalparam>
|
96
|
</configuration>
|
97
|
</plugin>
|
98
|
</plugins>
|
99
|
</build>
|
100
|
|
101
|
<distributionManagement>
|
102
|
<repository>
|
103
|
<id>dnet45-bootstrap-release</id>
|
104
|
<url>
|
105
|
http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release
|
106
|
</url>
|
107
|
</repository>
|
108
|
</distributionManagement>
|
109
|
</project>
|