source: trunk/autoquest/pom.xml @ 1441

Last change on this file since 1441 was 1441, checked in by pharms, 10 years ago
  • ensured unique snapshot versions in repository
File size: 3.2 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            <uniqueVersion>true</uniqueVersion>
29        </snapshotRepository>
30        <repository>
31            <id>autoquest</id>
32            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest</url>
33            <uniqueVersion>true</uniqueVersion>
34        </repository>
35    </distributionManagement>
36    <repositories>
37        <repository>
38            <id>autoquest-thirdparty-repo</id>
39            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
40        </repository>
41    </repositories>
42    <build>
43        <plugins>
44            <plugin>
45                <artifactId>maven-compiler-plugin</artifactId>
46                <version>2.3.2</version>
47                <configuration>
48                    <source>1.7</source>
49                    <target>1.7</target>
50                </configuration>
51            </plugin>
52            <plugin>
53                <artifactId>maven-source-plugin</artifactId>
54                <version>2.1.1</version>
55                <executions>
56                    <execution>
57                        <id>bundle-sources</id>
58                        <phase>package</phase>
59                        <goals>
60                            <!-- produce source artifact for main project sources -->
61                            <goal>jar-no-fork</goal>
62                        </goals>
63                    </execution>
64                </executions>
65            </plugin>
66        </plugins>
67    </build>
68    <reporting>
69        <plugins>
70            <plugin>
71                <groupId>org.apache.maven.plugins</groupId>
72                <artifactId>maven-javadoc-plugin</artifactId>
73                <version>2.8.1</version>
74                <configuration>
75                    <!-- switch on dependency-driven aggregation -->
76                    <includeDependencySources>true</includeDependencySources>
77
78                    <dependencySourceIncludes>
79                        <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude>
80                    </dependencySourceIncludes>
81                </configuration>
82            </plugin>
83        </plugins>
84    </reporting>
85</project>
Note: See TracBrowser for help on using the repository browser.