source: trunk/java-utils-test/pom.xml

Last change on this file was 2269, checked in by pharms, 5 years ago
  • Property svn:mime-type set to text/plain
File size: 7.2 KB
Line 
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    <modelVersion>4.0.0</modelVersion>
3    <groupId>de.ugoe.cs</groupId>
4    <artifactId>java-utils-test</artifactId>
5    <version>0.2.4-SNAPSHOT</version>
6    <name>java-utils-test</name>
7    <licenses>
8        <license>
9            <name>The Apache Software License, Version 2.0</name>
10            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
11        </license>
12    </licenses>
13    <properties>
14        <java-utils-version>0.2.4-SNAPSHOT</java-utils-version>
15    </properties>
16    <scm>
17        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url>
18        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection>
19    </scm>
20    <distributionManagement>
21        <snapshotRepository>
22            <id>autoquest-snapshots</id>
23            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
24        </snapshotRepository>
25        <repository>
26            <id>autoquest</id>
27            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
28        </repository>
29    </distributionManagement>
30    <repositories>
31        <repository>
32            <id>autoquest-snapshots</id>
33            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
34        </repository>
35        <repository>
36            <id>autoquest</id>
37            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
38        </repository>
39   
40    </repositories>
41    <dependencies>
42        <dependency>
43            <groupId>de.ugoe.cs</groupId>
44            <artifactId>java-utils</artifactId>
45            <version>${java-utils-version}</version>
46            <scope>test</scope>
47        </dependency>
48        <dependency>
49            <groupId>junit</groupId>
50            <artifactId>junit</artifactId>
51            <version>4.8.1</version>
52            <scope>test</scope>
53        </dependency>
54        <dependency>
55            <groupId>junit-addons</groupId>
56            <artifactId>junit-addons</artifactId>
57            <version>1.4</version>
58        </dependency>
59    </dependencies>
60    <build>
61        <pluginManagement>
62            <plugins>
63                <plugin>
64                    <groupId>org.eclipse.m2e</groupId>
65                    <artifactId>lifecycle-mapping</artifactId>
66                    <version>1.0.0</version>
67                    <configuration>
68                        <lifecycleMappingMetadata>
69                            <pluginExecutions>
70                                <pluginExecution>
71                                    <pluginExecutionFilter>
72                                        <groupId>org.apache.maven.plugins</groupId>
73                                        <artifactId>maven-dependency-plugin</artifactId>
74                                        <versionRange>[1.0.0,)</versionRange>
75                                        <goals>
76                                            <goal>unpack</goal>
77                                        </goals>
78                                    </pluginExecutionFilter>
79                                    <action>
80                                        <ignore />
81                                    </action>
82                                </pluginExecution>
83                            </pluginExecutions>
84                        </lifecycleMappingMetadata>
85                    </configuration>
86                </plugin>
87            </plugins>
88        </pluginManagement>
89        <plugins>
90            <plugin>
91                <groupId>org.apache.maven.plugins</groupId>
92                <artifactId>maven-compiler-plugin</artifactId>
93                <version>3.8.0</version>
94                <configuration>
95                    <release>11</release>
96                </configuration>
97            </plugin>
98            <plugin>
99                <groupId>org.apache.maven.plugins</groupId>
100                <artifactId>maven-dependency-plugin</artifactId>
101                <version>3.1.1</version>
102                <executions>
103                    <execution>
104                        <id>unpack</id>
105                        <phase>process-classes</phase>
106                        <goals>
107                            <goal>unpack</goal>
108                        </goals>
109                        <configuration>
110                            <artifactItems>
111                                <artifactItem>
112                                    <groupId>de.ugoe.cs</groupId>
113                                    <artifactId>java-utils</artifactId>
114                                    <version>${java-utils-version}</version>
115                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
116                                </artifactItem>
117                            </artifactItems>
118                        </configuration>
119                    </execution>
120                </executions>
121            </plugin>
122            <plugin>
123                <groupId>org.jacoco</groupId>
124                <artifactId>jacoco-maven-plugin</artifactId>
125                <version>0.8.3</version>
126                <executions>
127                    <execution>
128                        <id>default-prepare-agent</id>
129                        <goals>
130                            <goal>prepare-agent</goal>
131                        </goals>
132                    </execution>
133                    <execution>
134                        <id>default-report</id>
135                        <goals>
136                            <goal>report</goal>
137                        </goals>
138                    </execution>
139                    <execution>
140                        <id>default-check</id>
141                        <goals>
142                            <goal>check</goal>
143                        </goals>
144                        <configuration>
145                            <rules>
146                                <rule>
147                                    <element>BUNDLE</element>
148                                    <limits>
149                                        <limit>
150                                            <counter>COMPLEXITY</counter>
151                                            <value>COVEREDRATIO</value>
152                                            <minimum>0.60</minimum>
153                                        </limit>
154                                    </limits>
155                                </rule>
156                            </rules>
157                        </configuration>
158                    </execution>
159                </executions>
160            </plugin>
161            <plugin>
162                <groupId>org.apache.maven.plugins</groupId>
163                <artifactId>maven-jar-plugin</artifactId>
164                <version>3.1.2</version>
165                <executions>
166                    <execution>
167                        <goals>
168                            <goal>test-jar</goal>
169                        </goals>
170                    </execution>
171                </executions>
172            </plugin>
173        </plugins>
174    </build>
175</project>
Note: See TracBrowser for help on using the repository browser.