Project

General

Profile

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
	<parent>
5
    		<groupId>eu.dnetlib</groupId>
6
	        <artifactId>dnet-parent</artifactId>
7
            <version>0.0.1-SNAPSHOT</version>
8
	</parent>
9
	 -->
10
	<groupId>eu.dnetlib</groupId>
11
	<version>0.0.1-SNAPSHOT</version>
12
	<modelVersion>4.0.0</modelVersion>
13
	<artifactId>icm-iis-properties-maven-plugin</artifactId>
14
	<packaging>maven-plugin</packaging>
15
	<!-- 
16
	<version>0.0.1-SNAPSHOT</version>
17
	 -->
18

    
19
	<scm>
20
	  <developerConnection>
21
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-properties-maven-plugin/trunk
22
	  </developerConnection>
23
	</scm>
24

    
25
	<properties>
26
	</properties>
27

    
28
	<repositories>                                                                                                                                                                                
29
	    <repository>
30
	      <id>dnet-deps</id>
31
	      <name>dnet-dependencies</name>
32
	      <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
33
	      <layout>default</layout>
34
	    </repository>
35
	</repositories>
36

    
37
	<dependencies>
38
		<dependency>
39
	      <groupId>org.apache.maven</groupId>
40
	      <artifactId>maven-plugin-api</artifactId>
41
	      <version>2.0</version>
42
	    </dependency>
43
	    <dependency>
44
	      <groupId>org.apache.maven</groupId>
45
	      <artifactId>maven-project</artifactId>
46
	      <version>2.0</version>
47
	    </dependency>
48
		<dependency>
49
			<groupId>org.kuali.maven.plugins</groupId>
50
			<artifactId>properties-maven-plugin</artifactId>
51
			<version>1.3.2</version>
52
		</dependency>
53
	</dependencies>
54
	<build>	
55
	<directory>target</directory>
56
    <outputDirectory>target/classes</outputDirectory>
57
    <finalName>${project.artifactId}-${project.version}</finalName>
58
    <testOutputDirectory>target/test-classes</testOutputDirectory>
59
    <plugins>
60
      <plugin>
61
        <groupId>org.apache.maven.plugins</groupId>
62
        <artifactId>maven-compiler-plugin</artifactId>
63
        <version>2.3.2</version>
64
        <configuration>
65
          <source>1.6</source>
66
          <target>1.6</target>
67
        </configuration>
68
      </plugin>
69
      <plugin>
70
        <groupId>org.apache.maven.plugins</groupId>
71
        <artifactId>maven-source-plugin</artifactId>
72
        <version>2.1.2</version>
73
        <executions>
74
          <execution>
75
            <id>attach-sources</id>
76
            <phase>verify</phase>
77
            <goals>
78
              <goal>jar-no-fork</goal>
79
            </goals>
80
          </execution>
81
        </executions>
82
      </plugin>
83
      <plugin>
84
        <groupId>org.apache.maven.plugins</groupId>
85
        <artifactId>maven-surefire-plugin</artifactId>
86
        <version>2.4.3</version>
87
        <configuration>
88
          <redirectTestOutputToFile>true</redirectTestOutputToFile>
89
          <includes>
90
            <include>**/*Test.java</include>
91
          </includes>
92
          <excludes>
93
            <exclude>**/AllTests.java</exclude>
94
            <exclude>**/Abstract*Test.java</exclude>
95
          </excludes>
96
        </configuration>
97
      </plugin>
98
      <plugin>
99
        <groupId>org.apache.maven.plugins</groupId>
100
        <artifactId>maven-javadoc-plugin</artifactId>
101
        <version>2.9</version>
102
        <configuration>
103
          <detectLinks>true</detectLinks>
104
        </configuration>
105
      </plugin>
106
    </plugins>
107
	</build>
108

    
109
</project>
(3-3/3)