source: trunk/autoquest/pom.xml @ 1541

Last change on this file since 1541 was 1541, checked in by pharms, 10 years ago

[maven-release-plugin] prepare for next development iteration

File size: 3.2 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</artifactId>
5    <version>0.1.1-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>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
19        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
20    </scm>
21    <distributionManagement>
22        <snapshotRepository>
23            <id>autoquest-snapshots</id>
24            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
25        </snapshotRepository>
26        <repository>
27            <id>autoquest</id>
28            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url>
29        </repository>
30    </distributionManagement>
31    <repositories>
32        <repository>
33            <id>autoquest-thirdparty-repo</id>
34            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
35        </repository>
36    </repositories>
37    <build>
38        <plugins>
39            <plugin>
40                <artifactId>maven-compiler-plugin</artifactId>
41                <version>2.3.2</version>
42                <configuration>
43                    <source>1.7</source>
44                    <target>1.7</target>
45                </configuration>
46            </plugin>
47            <plugin>
48                <artifactId>maven-source-plugin</artifactId>
49                <version>2.1.1</version>
50                <executions>
51                    <execution>
52                        <id>bundle-sources</id>
53                        <phase>package</phase>
54                        <goals>
55                            <!-- produce source artifact for main project sources -->
56                            <goal>jar-no-fork</goal>
57                        </goals>
58                    </execution>
59                </executions>
60            </plugin>
61        </plugins>
62    </build>
63    <reporting>
64        <plugins>
65            <plugin>
66                <groupId>org.apache.maven.plugins</groupId>
67                <artifactId>maven-javadoc-plugin</artifactId>
68                <version>2.8.1</version>
69                <configuration>
70                    <!-- switch on dependency-driven aggregation -->
71                    <includeDependencySources>true</includeDependencySources>
72
73                    <dependencySourceIncludes>
74                        <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude>
75                    </dependencySourceIncludes>
76                </configuration>
77            </plugin>
78        </plugins>
79    </reporting>
80</project>
Note: See TracBrowser for help on using the repository browser.