Project

General

Profile

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

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

    
12
    <properties>
13
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14
    </properties>
15

    
16
    <repositories>
17
        <repository>
18
            <id>dnet-deps</id>
19
            <name>dnet-dependencies</name>
20
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
21
            <layout>default</layout>
22
        </repository>
23
    </repositories>
24

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

    
59
    <dependencies>
60
        <dependency>
61
            <groupId>org.apache.maven</groupId>
62
            <artifactId>maven-plugin-api</artifactId>
63
            <version>3.0.5</version>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.apache.maven.plugin-tools</groupId>
67
            <artifactId>maven-plugin-annotations</artifactId>
68
            <version>3.2</version>
69
            <scope>provided</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>eu.dnetlib</groupId>
73
            <artifactId>icm-iis-primer</artifactId>
74
            <version>0.0.1-SNAPSHOT</version>
75
        </dependency>
76
        <dependency>
77
            <groupId>junit</groupId>
78
            <artifactId>junit</artifactId>
79
            <version>4.10</version>
80
            <scope>test</scope>
81
        </dependency>
82

    
83
    </dependencies>
84
</project>
(3-3/3)