source: trunk/autoquest-jfcmonitor/pom.xml

Last change on this file was 2263, checked in by pharms, 5 years ago
  • Property svn:mime-type set to text/plain
File size: 3.4 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.autoquest</groupId>
4    <artifactId>autoquest-jfcmonitor</artifactId>
5    <version>0.2.4-SNAPSHOT</version>
6    <name>autoquest-jfcmonitor</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    <scm>
14        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url>
15        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection>
16    </scm>
17    <distributionManagement>
18        <snapshotRepository>
19            <id>autoquest-snapshots</id>
20            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
21        </snapshotRepository>
22        <repository>
23            <id>autoquest</id>
24            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
25        </repository>
26    </distributionManagement>
27    <dependencies>
28        <dependency>
29            <groupId>de.ugoe.cs</groupId>
30            <artifactId>java-utils</artifactId>
31            <version>${project.version}</version>
32        </dependency>
33    </dependencies>
34    <build>
35        <plugins>
36            <plugin>
37                <artifactId>maven-compiler-plugin</artifactId>
38                <version>3.8.0</version>
39                <configuration>
40                    <release>11</release>
41                </configuration>
42            </plugin>
43            <plugin>
44                <groupId>org.apache.maven.plugins</groupId>
45                <artifactId>maven-jar-plugin</artifactId>
46                <configuration>
47                    <archive>
48                        <manifest>
49                            <addClasspath>true</addClasspath>
50                            <classpathPrefix>lib/</classpathPrefix>
51                            <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass>
52                        </manifest>
53                    </archive>
54                </configuration>
55            </plugin>
56            <plugin>
57                <artifactId>maven-assembly-plugin</artifactId>
58                <version>2.2-beta-2</version>
59                <configuration>
60                    <descriptors>
61                        <descriptor>src/main/assembly/bin.xml</descriptor>
62                    </descriptors>
63                </configuration>
64                <executions>
65                    <execution>
66                        <id>make-assembly</id>
67                        <phase>package</phase>
68                        <goals>
69                            <goal>single</goal>
70                        </goals>
71                    </execution>
72                </executions>
73            </plugin>
74            <plugin>
75                <groupId>com.github.spotbugs</groupId>
76                <artifactId>spotbugs-maven-plugin</artifactId>
77                <version>3.1.12</version>
78                <configuration>
79                    <xmlOutput>true</xmlOutput>
80                </configuration>
81            </plugin>
82        </plugins>
83    </build>
84</project>
Note: See TracBrowser for help on using the repository browser.