| 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</artifactId> |
|---|
| 5 | <version>0.2.4-SNAPSHOT</version> |
|---|
| 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> |
|---|
| 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> |
|---|
| 20 | </scm> |
|---|
| 21 | <distributionManagement> |
|---|
| 22 | <snapshotRepository> |
|---|
| 23 | <id>autoquest-snapshots</id> |
|---|
| 24 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url> |
|---|
| 25 | </snapshotRepository> |
|---|
| 26 | <repository> |
|---|
| 27 | <id>autoquest</id> |
|---|
| 28 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url> |
|---|
| 29 | </repository> |
|---|
| 30 | </distributionManagement> |
|---|
| 31 | <repositories> |
|---|
| 32 | <repository> |
|---|
| 33 | <id>autoquest-snapshots</id> |
|---|
| 34 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url> |
|---|
| 35 | </repository> |
|---|
| 36 | <repository> |
|---|
| 37 | <id>autoquest</id> |
|---|
| 38 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url> |
|---|
| 39 | </repository> |
|---|
| 40 | <repository> |
|---|
| 41 | <id>autoquest-thirdparty-repo</id> |
|---|
| 42 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/thirdparty</url> |
|---|
| 43 | </repository> |
|---|
| 44 | <repository> |
|---|
| 45 | <id>FF-Releases</id> |
|---|
| 46 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/FF-Releases</url> |
|---|
| 47 | </repository> |
|---|
| 48 | </repositories> |
|---|
| 49 | <build> |
|---|
| 50 | <plugins> |
|---|
| 51 | <plugin> |
|---|
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 53 | <version>2.3.2</version> |
|---|
| 54 | <configuration> |
|---|
| 55 | <source>1.8</source> |
|---|
| 56 | <target>1.8</target> |
|---|
| 57 | </configuration> |
|---|
| 58 | </plugin> |
|---|
| 59 | <plugin> |
|---|
| 60 | <artifactId>maven-source-plugin</artifactId> |
|---|
| 61 | <version>2.1.1</version> |
|---|
| 62 | <executions> |
|---|
| 63 | <execution> |
|---|
| 64 | <id>attach-sources</id> |
|---|
| 65 | <phase>package</phase> |
|---|
| 66 | <goals> |
|---|
| 67 | <!-- produce source artifact for main project sources --> |
|---|
| 68 | <goal>jar-no-fork</goal> |
|---|
| 69 | </goals> |
|---|
| 70 | </execution> |
|---|
| 71 | </executions> |
|---|
| 72 | </plugin> |
|---|
| 73 | <plugin> |
|---|
| 74 | <groupId>org.codehaus.mojo</groupId> |
|---|
| 75 | <artifactId>findbugs-maven-plugin</artifactId> |
|---|
| 76 | <version>3.0.5</version> |
|---|
| 77 | <configuration> |
|---|
| 78 | <xmlOutput>true</xmlOutput> |
|---|
| 79 | </configuration> |
|---|
| 80 | </plugin> |
|---|
| 81 | </plugins> |
|---|
| 82 | </build> |
|---|
| 83 | <reporting> |
|---|
| 84 | <plugins> |
|---|
| 85 | <plugin> |
|---|
| 86 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 87 | <artifactId>maven-javadoc-plugin</artifactId> |
|---|
| 88 | <version>2.8.1</version> |
|---|
| 89 | <configuration> |
|---|
| 90 | <!-- switch on dependency-driven aggregation --> |
|---|
| 91 | <includeDependencySources>true</includeDependencySources> |
|---|
| 92 | |
|---|
| 93 | <dependencySourceIncludes> |
|---|
| 94 | <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude> |
|---|
| 95 | </dependencySourceIncludes> |
|---|
| 96 | </configuration> |
|---|
| 97 | </plugin> |
|---|
| 98 | </plugins> |
|---|
| 99 | </reporting> |
|---|
| 100 | </project> |
|---|