source: trunk/autoquest/pom.xml

Last change on this file was 2263, checked in by pharms, 5 years ago
File size: 4.0 KB
RevLine 
[1539]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">
[1011]2    <modelVersion>4.0.0</modelVersion>
3    <groupId>de.ugoe.cs.autoquest</groupId>
4    <artifactId>autoquest</artifactId>
[2179]5    <version>0.2.4-SNAPSHOT</version>
[1011]6    <name>autoquest</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    <packaging>pom</packaging>
14    <properties>
15        <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir>
16    </properties>
17    <scm>
[2179]18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest</url>
19        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest</connection>
[1011]20    </scm>
21    <distributionManagement>
22        <snapshotRepository>
23            <id>autoquest-snapshots</id>
[2202]24            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
[1011]25        </snapshotRepository>
26        <repository>
27            <id>autoquest</id>
[2202]28            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
[1011]29        </repository>
30    </distributionManagement>
31    <repositories>
32        <repository>
[2148]33            <id>autoquest-snapshots</id>
[2202]34            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
[2148]35        </repository>
36        <repository>
37            <id>autoquest</id>
[2202]38            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
[2148]39        </repository>
40        <repository>
[1011]41            <id>autoquest-thirdparty-repo</id>
[2202]42            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/thirdparty</url>
[1011]43        </repository>
[1759]44        <repository>
45            <id>FF-Releases</id>
[2202]46            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/FF-Releases</url>
[1759]47        </repository>
[1011]48    </repositories>
49    <build>
50        <plugins>
51            <plugin>
52                <artifactId>maven-compiler-plugin</artifactId>
[2260]53                <version>3.8.0</version>
[1011]54                <configuration>
[2260]55                    <release>11</release>
[1011]56                </configuration>
57            </plugin>
58            <plugin>
59                <artifactId>maven-source-plugin</artifactId>
[2260]60                <version>3.1.0</version>
[1011]61                <executions>
62                    <execution>
[2076]63                        <id>attach-sources</id>
[1011]64                        <phase>package</phase>
65                        <goals>
66                            <!-- produce source artifact for main project sources -->
67                            <goal>jar-no-fork</goal>
68                        </goals>
69                    </execution>
70                </executions>
71            </plugin>
[2190]72            <plugin>
[2263]73                <groupId>com.github.spotbugs</groupId>
74                <artifactId>spotbugs-maven-plugin</artifactId>
75                <version>3.1.12</version>
[2190]76                <configuration>
77                    <xmlOutput>true</xmlOutput>
78                </configuration>
79            </plugin>
[1011]80        </plugins>
81    </build>
82    <reporting>
83        <plugins>
84            <plugin>
85                <groupId>org.apache.maven.plugins</groupId>
86                <artifactId>maven-javadoc-plugin</artifactId>
[2260]87                <version>3.1.1</version>
[1011]88                <configuration>
89                    <!-- switch on dependency-driven aggregation -->
90                    <includeDependencySources>true</includeDependencySources>
[759]91
[1011]92                    <dependencySourceIncludes>
93                        <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude>
94                    </dependencySourceIncludes>
95                </configuration>
96            </plugin>
97        </plugins>
98    </reporting>
[2076]99</project>
Note: See TracBrowser for help on using the repository browser.