blob: 44f58d57c1c4061ae966f004ba1c364f110e9439 [file] [log] [blame]
Olaf Ottof4c02132010-10-10 20:39:11 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.eclipse</groupId>
7 <artifactId>objectteams-parent-pom</artifactId>
8 <version>0.8.0-SNAPSHOT</version>
9 </parent>
10
11 <packaging>jar</packaging>
12
13 <groupId>org.eclipse</groupId>
14 <artifactId>objectteams-compile-test</artifactId>
15 <version>1.0.0-SNAPSHOT</version>
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000016 <name>Object Teams test project</name>
17
18 <!-- simply repeat this declaration from the parent pom, otherwise Maven duplicates the artifactId in the path -->
19 <url>http://download.eclipse.org/objectteams/maven/3/sites/${project.artifactId}</url>
20
21 <description>
22 This module demonstrates how to use Maven3 for compiling and running OT/J programs.
23 </description>
Olaf Ottof4c02132010-10-10 20:39:11 +000024
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000025 <licenses>
26 <license>
27 <name>Eclipse Public License Version 1.0</name>
28 <comments>
29 This file is part of "Object Teams Development Tooling"-Software
30
31 Copyright 2010 GK Software AG and others.
32 All rights reserved. This program and the accompanying materials
33 are made available under the terms of the Eclipse Public License v1.0
34 which accompanies this distribution, and is available at
35 http://www.eclipse.org/legal/epl-v10.html
36
37 Please visit http://www.eclipse.org/objectteams for updates and contact.
38
39 Contributors:
40 Olaf Otto - Initial concept
41 Stephan Herrmann - Initial API and implementation
42 </comments>
43 </license>
44 </licenses>
45
Olaf Ottof4c02132010-10-10 20:39:11 +000046 <repositories>
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000047 <!-- needed for finding the parent-pom: -->
Olaf Ottof4c02132010-10-10 20:39:11 +000048 <repository>
49 <id>ObjectTeamsRepository</id>
50 <name>Object Teams Repository</name>
51 <url>http://download.eclipse.org/objectteams/maven/3/repository</url>
52 </repository>
53 </repositories>
54
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000055 <properties>
56 <!-- Relative path of this module: -->
Stephan Herrmanneae76d42010-10-18 16:08:51 +000057 <project-repository-path>trunk/maven/testproject</project-repository-path>
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000058 </properties>
59
Stephan Herrmanneae76d42010-10-18 16:08:51 +000060 <!-- Override inherited declaration, otherwise Maven appends the artifactId to the path -->
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000061 <scm>
Stephan Herrmanneae76d42010-10-18 16:08:51 +000062 <connection>scm:svn:svn://dev.eclipse.org/svnroot/tools/org.eclipse.objectteams/${project-repository-path}</connection>
63 <developerConnection>scm:svn:svn+ssh://dev.eclipse.org/svnroot/tools/org.eclipse.objectteams/${project-repository-path}</developerConnection>
64 <url>http://dev.eclipse.org/viewcvs/index.cgi/${project-repository-path}?root=TOOLS_OBJECTTEAMS</url>
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000065 </scm>
66
67 <!-- simply repeat this declaration from the parent pom, otherwise Maven duplicates the artifactId in the path -->
68 <distributionManagement>
69 <site>
70 <id>otSiteRepo</id>
71 <name>Object Teams sites repository for Maven 3</name>
72 <url>scpexe://${ot.host}:${ot.maven.repository.basepath}/sites/${project.artifactId}</url>
73 </site>
74 </distributionManagement>
75
Olaf Ottof4c02132010-10-10 20:39:11 +000076 <dependencies>
77 <!-- Testing: -->
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <version>4.6</version>
82 <scope>test</scope>
83 </dependency>
84 </dependencies>
Stephan Herrmannb53e64c2010-10-18 14:02:27 +000085
86 <reporting>
87 <plugins>
88 <!-- See http://mojo.codehaus.org/jdepend-maven-plugin/ -->
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>jdepend-maven-plugin</artifactId>
92 <version>2.0-beta-2</version>
93 </plugin>
94 <!-- See http://mojo.codehaus.org/taglist-maven-plugin/ -->
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>taglist-maven-plugin</artifactId>
98 </plugin>
99 <!-- See http://maven.apache.org/plugins/maven-javadoc-plugin/ -->
100 <!-- Disabled as it cannot parse OT sources. -->
101 <!--
102 >plugin> <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-javadoc-plugin</artifactId> </plugin -->
104 </plugins>
105 </reporting>
Olaf Ottof4c02132010-10-10 20:39:11 +0000106</project>