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.quest</groupId> |
---|
8 | <artifactId>quest</artifactId> |
---|
9 | <version>0.0.1-SNAPSHOT</version> |
---|
10 | <name>quest</name> |
---|
11 | <packaging>pom</packaging> |
---|
12 | <properties> |
---|
13 | <quest-scm-trunk-dir>https://quest.informatik.uni-goettingen.de/svn/quest/trunk</quest-scm-trunk-dir> |
---|
14 | </properties> |
---|
15 | <scm> |
---|
16 | <url>${quest-scm-trunk-dir}/quest</url> |
---|
17 | </scm> |
---|
18 | <distributionManagement> |
---|
19 | <snapshotRepository> |
---|
20 | <id>quest-snapshots</id> |
---|
21 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url> |
---|
22 | </snapshotRepository> |
---|
23 | <repository> |
---|
24 | <id>quest</id> |
---|
25 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest</url> |
---|
26 | </repository> |
---|
27 | </distributionManagement> |
---|
28 | <repositories> |
---|
29 | <repository> |
---|
30 | <id>quest-thirdparty-repo</id> |
---|
31 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> |
---|
32 | </repository> |
---|
33 | </repositories> |
---|
34 | <build> |
---|
35 | <plugins> |
---|
36 | <plugin> |
---|
37 | <artifactId>maven-compiler-plugin</artifactId> |
---|
38 | <version>2.3.2</version> |
---|
39 | <configuration> |
---|
40 | <source>1.6</source> |
---|
41 | <target>1.6</target> |
---|
42 | </configuration> |
---|
43 | </plugin> |
---|
44 | <plugin> |
---|
45 | <artifactId>maven-source-plugin</artifactId> |
---|
46 | <version>2.1.1</version> |
---|
47 | <executions> |
---|
48 | <execution> |
---|
49 | <id>bundle-sources</id> |
---|
50 | <phase>package</phase> |
---|
51 | <goals> |
---|
52 | <!-- produce source artifact for main project sources --> |
---|
53 | <goal>jar-no-fork</goal> |
---|
54 | </goals> |
---|
55 | </execution> |
---|
56 | </executions> |
---|
57 | </plugin> |
---|
58 | </plugins> |
---|
59 | </build> |
---|
60 | <reporting> |
---|
61 | <plugins> |
---|
62 | <plugin> |
---|
63 | <groupId>org.apache.maven.plugins</groupId> |
---|
64 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
65 | <version>2.8.1</version> |
---|
66 | <configuration> |
---|
67 | <!-- switch on dependency-driven aggregation --> |
---|
68 | <includeDependencySources>true</includeDependencySources> |
---|
69 | |
---|
70 | <dependencySourceIncludes> |
---|
71 | <dependencySourceInclude>de.ugoe.cs.*:*</dependencySourceInclude> |
---|
72 | </dependencySourceIncludes> |
---|
73 | </configuration> |
---|
74 | </plugin> |
---|
75 | </plugins> |
---|
76 | </reporting> |
---|
77 | </project> |
---|