Project

General

Profile

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
    <groupId>eu.dnetlib</groupId>
3
    <version>0.0.3-SNAPSHOT</version>
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>icm-iis-primer-maven-plugin</artifactId>
6
    <packaging>maven-plugin</packaging>
7

    
8
    <name>icm-iis-classpath-primer-maven-plugin</name>
9
    <url>http://maven.apache.org</url>
10

    
11
    <scm>
12
      <developerConnection>
13
        scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/icm-iis-primer-maven-plugin/trunk
14
      </developerConnection>
15
    </scm>
16

    
17
    <properties>
18
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19
    </properties>
20

    
21
    <repositories>
22
        <repository>
23
            <id>dnet-deps</id>
24
            <name>dnet-dependencies</name>
25
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
26
            <layout>default</layout>
27
        </repository>
28
    </repositories>
29

    
30
    <build>
31
        <plugins>
32
            <plugin>
33
                <artifactId>maven-compiler-plugin</artifactId>
34
                <version>2.3.2</version>
35
                <configuration>
36
                    <source>1.6</source>
37
                    <target>1.6</target>
38
                </configuration>
39
            </plugin>
40
        </plugins>
41
        <pluginManagement>
42
            <plugins>
43
                <plugin>
44
                    <groupId>org.apache.maven.plugins</groupId>
45
                    <artifactId>maven-plugin-plugin</artifactId>
46
                    <version>3.2</version>
47
                    <configuration>
48
                        <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
49
                    </configuration>
50
                    <executions>
51
                        <execution>
52
                            <id>mojo-descriptor</id>
53
                            <phase>process-classes</phase>
54
                            <goals>
55
                                <goal>descriptor</goal>
56
                            </goals>
57
                        </execution>
58
                    </executions>
59
                </plugin>
60
            </plugins>
61
        </pluginManagement>
62
    </build>
63

    
64
    <dependencies>
65
        <dependency>
66
            <groupId>org.apache.maven</groupId>
67
            <artifactId>maven-plugin-api</artifactId>
68
            <version>3.0.5</version>
69
        </dependency>
70
        <dependency>
71
            <groupId>org.apache.maven.plugin-tools</groupId>
72
            <artifactId>maven-plugin-annotations</artifactId>
73
            <version>3.2</version>
74
            <scope>provided</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>eu.dnetlib</groupId>
78
            <artifactId>icm-iis-primer</artifactId>
79
            <version>[0.0.1,1.0.0)</version>
80
        </dependency>
81
        <dependency>
82
            <groupId>junit</groupId>
83
            <artifactId>junit</artifactId>
84
            <version>4.10</version>
85
            <scope>test</scope>
86
        </dependency>
87

    
88
    </dependencies>
89

    
90
    <distributionManagement>
91
        <repository>
92
        <id>dnet45-bootstrap-release</id>
93
        <url>
94
        http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release
95
        </url>
96
        </repository>
97
    </distributionManagement>
98

    
99
</project>
(2-2/2)