Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [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/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>org.eclipse.objectteams</groupId> |
| 6 | <artifactId>infrastructure-parent</artifactId> |
| 7 | <version>2.7.6</version> |
| 8 | <packaging>pom</packaging> |
| 9 | |
| 10 | <name>Object Teams infrastructure parent pom</name> |
| 11 | |
| 12 | <url>http://download.eclipse.org/objectteams/maven/3/sites/${project.artifactId}</url> |
| 13 | |
| 14 | <description> |
Stephan Herrmann | 9529699 | 2019-12-08 22:23:49 +0100 | [diff] [blame] | 15 | This is the parent pom for releasing Object Teams artifacts for use in Maven3. |
Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [diff] [blame] | 16 | </description> |
| 17 | |
| 18 | <licenses> |
| 19 | <license> |
| 20 | <name>Eclipse Public License Version 1.0</name> |
| 21 | <comments> |
| 22 | This file is part of "Object Teams Development Tooling"-Software. |
| 23 | |
| 24 | Copyright 2019 GK Software SE and others. |
| 25 | All rights reserved. This program and the accompanying materials |
| 26 | are made available under the terms of the Eclipse Public License v1.0 |
| 27 | which accompanies this distribution, and is available at |
| 28 | http://www.eclipse.org/legal/epl-v10.html |
| 29 | |
| 30 | Please visit http://www.eclipse.org/objectteams for updates and contact. |
| 31 | |
| 32 | Contributors: |
| 33 | Stephan Herrmann - Initial API and implementation. |
| 34 | </comments> |
| 35 | </license> |
| 36 | </licenses> |
| 37 | |
| 38 | <organization> |
| 39 | <name>Eclipse Object Teams Project</name> |
| 40 | <url>http://www.eclipse.org/objectteams</url> |
| 41 | </organization> |
| 42 | |
| 43 | <developers> |
| 44 | <developer><name>Stephan Herrmann</name><organization>GK Software SE</organization></developer> |
| 45 | </developers> |
| 46 | |
| 47 | <mailingLists> |
| 48 | <mailingList><name>Object Teams Forum</name><archive>http://www.eclipse.org/forums/eclipse.objectteams</archive></mailingList> |
| 49 | </mailingLists> |
| 50 | |
| 51 | <issueManagement> |
| 52 | <system>Bugzilla</system> |
| 53 | <url>http://bugs.eclipse.org/bugs</url> |
| 54 | </issueManagement> |
| 55 | |
Stephan Herrmann | c2a5a5f | 2020-01-12 19:51:26 +0100 | [diff] [blame] | 56 | <distributionManagement> |
| 57 | <repository> |
| 58 | <id>otRepo</id> |
| 59 | <name>Object Teams repository for Maven 3</name> |
| 60 | <url>${protocol}://${ot.host}:${ot.maven.repository.basepath}/repository/${project.artifactId}</url> |
| 61 | </repository> |
| 62 | <site> |
| 63 | <id>otSiteRepo</id> |
| 64 | <name>Object Teams sites repository for Maven 3</name> |
| 65 | <url>${protocol}://${ot.host}:${ot.maven.repository.basepath}/sites/${project.artifactId}</url> |
| 66 | </site> |
| 67 | </distributionManagement> |
| 68 | |
Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [diff] [blame] | 69 | <repositories> |
| 70 | <repository> |
| 71 | <id>ObjectTeamsRepository</id> |
| 72 | <name>Object Teams Repository</name> |
| 73 | <url>http://download.eclipse.org/objectteams/maven/3/repository</url> |
| 74 | </repository> |
| 75 | </repositories> |
| 76 | |
| 77 | <scm> |
| 78 | <url>http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git</url> |
| 79 | </scm> |
| 80 | |
| 81 | |
| 82 | <modules> |
| 83 | <module>parent-pom/pom.xml</module> |
| 84 | <module>parent-pom-otdre/pom.xml</module> |
| 85 | <module>artifact-deployer/pom.xml</module> |
| 86 | </modules> |
Stephan Herrmann | 3433693 | 2019-12-08 23:29:01 +0100 | [diff] [blame] | 87 | |
| 88 | <build> |
| 89 | <plugins> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.maven.plugins</groupId> |
| 92 | <artifactId>maven-site-plugin</artifactId> |
| 93 | <version>3.8.2</version> |
| 94 | <configuration> |
| 95 | <skip>true</skip> |
| 96 | </configuration> |
| 97 | </plugin> |
Stephan Herrmann | 2c01488 | 2020-01-12 20:05:25 +0100 | [diff] [blame] | 98 | <plugin> |
| 99 | <groupId>org.apache.maven.plugins</groupId> |
| 100 | <artifactId>maven-deploy-plugin</artifactId> |
| 101 | <version>2.7</version> |
| 102 | <configuration> |
| 103 | <skip>true</skip> |
| 104 | </configuration> |
| 105 | </plugin> |
Stephan Herrmann | 3433693 | 2019-12-08 23:29:01 +0100 | [diff] [blame] | 106 | </plugins> |
| 107 | </build> |
Stephan Herrmann | 9c3a3b2 | 2019-12-08 19:45:06 +0100 | [diff] [blame] | 108 | </project> |