Project

General

Profile

1 19110 mateusz.fe
<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 19146 mateusz.fe
    <groupId>eu.dnetlib</groupId>
4
    <version>0.0.1-SNAPSHOT</version>
5 19110 mateusz.fe
    <modelVersion>4.0.0</modelVersion>
6 19529 mateusz.fe
    <artifactId>icm-iis-primer-maven-plugin</artifactId>
7 19146 mateusz.fe
    <packaging>maven-plugin</packaging>
8 19110 mateusz.fe
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 19179 mateusz.fe
    <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 19146 mateusz.fe
    <build>
26 19570 mateusz.fe
        <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 19146 mateusz.fe
        <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 19570 mateusz.fe
                    <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 19146 mateusz.fe
                </plugin>
55
            </plugins>
56
        </pluginManagement>
57
    </build>
58
59 19110 mateusz.fe
    <dependencies>
60
        <dependency>
61 19146 mateusz.fe
            <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 19529 mateusz.fe
            <artifactId>icm-iis-primer</artifactId>
74 19146 mateusz.fe
            <version>0.0.1-SNAPSHOT</version>
75
        </dependency>
76
        <dependency>
77 19110 mateusz.fe
            <groupId>junit</groupId>
78
            <artifactId>junit</artifactId>
79 19146 mateusz.fe
            <version>4.10</version>
80 19110 mateusz.fe
            <scope>test</scope>
81
        </dependency>
82 19146 mateusz.fe
83 19110 mateusz.fe
    </dependencies>
84
</project>