Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 1 | <?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> |
Stephan Herrmann | 6a489e1 | 2013-08-06 12:15:58 +0200 | [diff] [blame] | 6 | <groupId>org.eclipse.objectteams</groupId> |
Stephan Herrmann | 760d8f9 | 2016-06-12 15:05:20 +0200 | [diff] [blame] | 7 | <artifactId>objectteams-otdre-parent-pom</artifactId> |
| 8 | <version>2.5.0</version> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <packaging>jar</packaging> |
| 12 | |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 13 | <artifactId>objectteams-compile-test</artifactId> |
Stephan Herrmann | 760d8f9 | 2016-06-12 15:05:20 +0200 | [diff] [blame] | 14 | <version>1.1.1</version> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 15 | <name>Object Teams test project</name> |
| 16 | |
| 17 | <!-- simply repeat this declaration from the parent pom, otherwise Maven duplicates the artifactId in the path --> |
| 18 | <url>http://download.eclipse.org/objectteams/maven/3/sites/${project.artifactId}</url> |
| 19 | |
| 20 | <description> |
| 21 | This module demonstrates how to use Maven3 for compiling and running OT/J programs. |
| 22 | </description> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 23 | |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 24 | <licenses> |
| 25 | <license> |
| 26 | <name>Eclipse Public License Version 1.0</name> |
| 27 | <comments> |
| 28 | This file is part of "Object Teams Development Tooling"-Software |
| 29 | |
Stephan Herrmann | 760d8f9 | 2016-06-12 15:05:20 +0200 | [diff] [blame] | 30 | Copyright 2010, 2015 GK Software AG and others. |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 31 | All rights reserved. This program and the accompanying materials |
| 32 | are made available under the terms of the Eclipse Public License v1.0 |
| 33 | which accompanies this distribution, and is available at |
| 34 | http://www.eclipse.org/legal/epl-v10.html |
| 35 | |
| 36 | Please visit http://www.eclipse.org/objectteams for updates and contact. |
| 37 | |
| 38 | Contributors: |
| 39 | Olaf Otto - Initial concept |
| 40 | Stephan Herrmann - Initial API and implementation |
| 41 | </comments> |
| 42 | </license> |
| 43 | </licenses> |
| 44 | |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 45 | <repositories> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 46 | <!-- needed for finding the parent-pom: --> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 47 | <repository> |
| 48 | <id>ObjectTeamsRepository</id> |
| 49 | <name>Object Teams Repository</name> |
| 50 | <url>http://download.eclipse.org/objectteams/maven/3/repository</url> |
| 51 | </repository> |
| 52 | </repositories> |
| 53 | |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 54 | <properties> |
| 55 | <!-- Relative path of this module: --> |
Stephan Herrmann | cac1741 | 2012-07-05 21:36:45 +0200 | [diff] [blame] | 56 | <project-repository-path>maven/testproject</project-repository-path> |
Stephan Herrmann | a78f153 | 2012-08-25 22:00:38 +0200 | [diff] [blame] | 57 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 58 | </properties> |
| 59 | |
Stephan Herrmann | eae76d4 | 2010-10-18 16:08:51 +0000 | [diff] [blame] | 60 | <!-- Override inherited declaration, otherwise Maven appends the artifactId to the path --> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 61 | <scm> |
Stephan Herrmann | cac1741 | 2012-07-05 21:36:45 +0200 | [diff] [blame] | 62 | <connection>scm:git:git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git/${project-repository-path}</connection> |
| 63 | <developerConnection>scm:git:ssh://${username}@git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git/${project-repository-path}</developerConnection> |
| 64 | <url>http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/${project-repository-path}</url> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 65 | </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 Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 76 | <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 Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 85 | |
| 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> |
Stephan Herrmann | 0481dd6 | 2011-06-13 09:32:12 +0000 | [diff] [blame] | 98 | <version>2.4</version> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 99 | </plugin> |
| 100 | <!-- See http://maven.apache.org/plugins/maven-javadoc-plugin/ --> |
| 101 | <!-- Disabled as it cannot parse OT sources. --> |
| 102 | <!-- |
| 103 | >plugin> <groupId>org.apache.maven.plugins</groupId> |
| 104 | <artifactId>maven-javadoc-plugin</artifactId> </plugin --> |
| 105 | </plugins> |
| 106 | </reporting> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 107 | </project> |