source: trunk/autoquest/pom.xml @ 1011

Last change on this file since 1011 was 1011, checked in by pharms, 12 years ago
  • harmonized formatting of all POMs
File size: 3.1 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.autoquest</groupId>
8    <artifactId>autoquest</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoquest</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <packaging>pom</packaging>
18    <properties>
19        <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir>
20    </properties>
21    <scm>
22        <url>${autoquest-scm-trunk-dir}/autoquest</url>
23    </scm>
24    <distributionManagement>
25        <snapshotRepository>
26            <id>autoquest-snapshots</id>
27            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
28        </snapshotRepository>
29        <repository>
30            <id>autoquest</id>
31            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest</url>
32        </repository>
33    </distributionManagement>
34    <repositories>
35        <repository>
36            <id>autoquest-thirdparty-repo</id>
37            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
38        </repository>
39    </repositories>
40    <build>
41        <plugins>
42            <plugin>
43                <artifactId>maven-compiler-plugin</artifactId>
44                <version>2.3.2</version>
45                <configuration>
46                    <source>1.6</source>
47                    <target>1.6</target>
48                </configuration>
49            </plugin>
50            <plugin>
51                <artifactId>maven-source-plugin</artifactId>
52                <version>2.1.1</version>
53                <executions>
54                    <execution>
55                        <id>bundle-sources</id>
56                        <phase>package</phase>
57                        <goals>
58                            <!-- produce source artifact for main project sources -->
59                            <goal>jar-no-fork</goal>
60                        </goals>
61                    </execution>
62                </executions>
63            </plugin>
64        </plugins>
65    </build>
66    <reporting>
67        <plugins>
68            <plugin>
69                <groupId>org.apache.maven.plugins</groupId>
70                <artifactId>maven-javadoc-plugin</artifactId>
71                <version>2.8.1</version>
72                <configuration>
73                    <!-- switch on dependency-driven aggregation -->
74                    <includeDependencySources>true</includeDependencySources>
75
76                    <dependencySourceIncludes>
77                        <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude>
78                    </dependencySourceIncludes>
79                </configuration>
80            </plugin>
81        </plugins>
82    </reporting>
83</project>
Note: See TracBrowser for help on using the repository browser.