blob: cc26b281593641078927e5a742e2862ad1d8773c [file] [log] [blame]
Stephan Herrmann95296992019-12-08 22:23:49 +01001<?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>release-parent</artifactId>
Stephan Herrmann45caf132022-09-08 23:53:55 +02007 <version>2.8.2-SNAPSHOT</version>
Stephan Herrmann95296992019-12-08 22:23:49 +01008 <packaging>pom</packaging>
9
10 <name>Object Teams parent pom for releasing to maven</name>
11
12 <url>http://download.eclipse.org/objectteams/maven/3/sites/${project.artifactId}</url>
13
14 <description>
15 This is the parent pom for releasing Object Teams artifacts for use in Maven3,
16 along with an example test project.
17 </description>
18
19 <licenses>
20 <license>
21 <name>Eclipse Public License Version 1.0</name>
22 <comments>
23 This file is part of "Object Teams Development Tooling"-Software.
24
25 Copyright 2019 GK Software SE and others.
Stephan Herrmann35705382020-03-03 21:42:19 +010026 This program and the accompanying materials
27 are made available under the terms of the Eclipse Public License 2.0
Stephan Herrmann95296992019-12-08 22:23:49 +010028 which accompanies this distribution, and is available at
Stephan Herrmann35705382020-03-03 21:42:19 +010029 https://www.eclipse.org/legal/epl-2.0/
30
31 SPDX-License-Identifier: EPL-2.0
Stephan Herrmann95296992019-12-08 22:23:49 +010032 Please visit http://www.eclipse.org/objectteams for updates and contact.
33
34 Contributors:
35 Stephan Herrmann - Initial API and implementation.
36 </comments>
37 </license>
38 </licenses>
39
40 <organization>
41 <name>Eclipse Object Teams Project</name>
42 <url>http://www.eclipse.org/objectteams</url>
43 </organization>
44
45 <developers>
46 <developer><name>Stephan Herrmann</name><organization>GK Software SE</organization></developer>
47 </developers>
48
49 <mailingLists>
50 <mailingList><name>Object Teams Forum</name><archive>http://www.eclipse.org/forums/eclipse.objectteams</archive></mailingList>
51 </mailingLists>
52
53 <issueManagement>
54 <system>Bugzilla</system>
55 <url>http://bugs.eclipse.org/bugs</url>
56 </issueManagement>
57
58 <repositories>
59 <repository>
60 <id>ObjectTeamsRepository</id>
61 <name>Object Teams Repository</name>
62 <url>http://download.eclipse.org/objectteams/maven/3/repository</url>
63 </repository>
64 </repositories>
65
66 <scm>
67 <url>http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git</url>
68 </scm>
69
70
71 <modules>
72 <module>infrastructure/pom.xml</module>
73 <module>testproject/pom.xml</module>
74 </modules>
Stephan Herrmann34336932019-12-08 23:29:01 +010075
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-site-plugin</artifactId>
81 <version>3.8.2</version>
82 <configuration>
83 <skip>true</skip>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Stephan Herrmann95296992019-12-08 22:23:49 +010088</project>