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> |
Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [diff] [blame] | 8 | <version>2.7.6</version> |
Stephan Herrmann | 9529699 | 2019-12-08 22:23:49 +0100 | [diff] [blame] | 9 | <relativePath>../infrastructure/parent-pom-otdre/pom.xml</relativePath> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <packaging>jar</packaging> |
| 13 | |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 14 | <artifactId>objectteams-compile-test</artifactId> |
Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [diff] [blame] | 15 | <version>1.1.6</version> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 16 | <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 Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 24 | |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 25 | <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 | |
Stephan Herrmann | c830660 | 2019-04-09 23:32:55 +0200 | [diff] [blame] | 31 | Copyright 2010, 2019 GK Software SE and others. |
Stephan Herrmann | 3570538 | 2020-03-03 21:42:19 +0100 | [diff] [blame] | 32 | This program and the accompanying materials |
| 33 | are made available under the terms of the Eclipse Public License 2.0 |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 34 | which accompanies this distribution, and is available at |
Stephan Herrmann | 3570538 | 2020-03-03 21:42:19 +0100 | [diff] [blame] | 35 | https://www.eclipse.org/legal/epl-2.0/ |
| 36 | |
| 37 | SPDX-License-Identifier: EPL-2.0 |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 38 | Please visit http://www.eclipse.org/objectteams for updates and contact. |
| 39 | |
| 40 | Contributors: |
| 41 | Olaf Otto - Initial concept |
| 42 | Stephan Herrmann - Initial API and implementation |
| 43 | </comments> |
| 44 | </license> |
| 45 | </licenses> |
| 46 | |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 47 | <repositories> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 48 | <!-- needed for finding the parent-pom: --> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 49 | <repository> |
| 50 | <id>ObjectTeamsRepository</id> |
| 51 | <name>Object Teams Repository</name> |
| 52 | <url>http://download.eclipse.org/objectteams/maven/3/repository</url> |
| 53 | </repository> |
| 54 | </repositories> |
| 55 | |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 56 | <properties> |
| 57 | <!-- Relative path of this module: --> |
Stephan Herrmann | cac1741 | 2012-07-05 21:36:45 +0200 | [diff] [blame] | 58 | <project-repository-path>maven/testproject</project-repository-path> |
Stephan Herrmann | a78f153 | 2012-08-25 22:00:38 +0200 | [diff] [blame] | 59 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 60 | </properties> |
| 61 | |
Stephan Herrmann | eae76d4 | 2010-10-18 16:08:51 +0000 | [diff] [blame] | 62 | <!-- Override inherited declaration, otherwise Maven appends the artifactId to the path --> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 63 | <scm> |
Stephan Herrmann | cac1741 | 2012-07-05 21:36:45 +0200 | [diff] [blame] | 64 | <connection>scm:git:git://git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git/${project-repository-path}</connection> |
| 65 | <developerConnection>scm:git:ssh://${username}@git.eclipse.org/gitroot/objectteams/org.eclipse.objectteams.git/${project-repository-path}</developerConnection> |
| 66 | <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] | 67 | </scm> |
| 68 | |
| 69 | <!-- simply repeat this declaration from the parent pom, otherwise Maven duplicates the artifactId in the path --> |
| 70 | <distributionManagement> |
| 71 | <site> |
| 72 | <id>otSiteRepo</id> |
| 73 | <name>Object Teams sites repository for Maven 3</name> |
Stephan Herrmann | 08676b9 | 2018-09-13 21:34:36 +0200 | [diff] [blame] | 74 | <url>${protocol}://${ot.host}:${ot.maven.repository.basepath}/sites/${project.artifactId}</url> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 75 | </site> |
| 76 | </distributionManagement> |
| 77 | |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 78 | <dependencies> |
| 79 | <!-- Testing: --> |
| 80 | <dependency> |
| 81 | <groupId>junit</groupId> |
| 82 | <artifactId>junit</artifactId> |
| 83 | <version>4.6</version> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 87 | |
| 88 | <reporting> |
| 89 | <plugins> |
| 90 | <!-- See http://mojo.codehaus.org/jdepend-maven-plugin/ --> |
| 91 | <plugin> |
| 92 | <groupId>org.codehaus.mojo</groupId> |
| 93 | <artifactId>jdepend-maven-plugin</artifactId> |
Stephan Herrmann | 441b047 | 2019-12-08 23:17:33 +0100 | [diff] [blame] | 94 | <version>2.0</version> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 95 | </plugin> |
| 96 | <!-- See http://mojo.codehaus.org/taglist-maven-plugin/ --> |
| 97 | <plugin> |
| 98 | <groupId>org.codehaus.mojo</groupId> |
| 99 | <artifactId>taglist-maven-plugin</artifactId> |
Stephan Herrmann | 0481dd6 | 2011-06-13 09:32:12 +0000 | [diff] [blame] | 100 | <version>2.4</version> |
Stephan Herrmann | b53e64c | 2010-10-18 14:02:27 +0000 | [diff] [blame] | 101 | </plugin> |
| 102 | <!-- See http://maven.apache.org/plugins/maven-javadoc-plugin/ --> |
| 103 | <!-- Disabled as it cannot parse OT sources. --> |
| 104 | <!-- |
| 105 | >plugin> <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-javadoc-plugin</artifactId> </plugin --> |
| 107 | </plugins> |
| 108 | </reporting> |
Olaf Otto | f4c0213 | 2010-10-10 20:39:11 +0000 | [diff] [blame] | 109 | </project> |