root/trunk/pustefix-archetypes/pom.xml

Revision 6206, 1.3 KB (checked in by mtld, 4 weeks ago)

[maven-release-plugin] prepare for next development iteration

Line 
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>
6    <groupId>org.pustefixframework</groupId>
7    <artifactId>pustefixframework</artifactId>
8    <version>0.18.15-SNAPSHOT</version>
9  </parent>
10
11  <groupId>org.pustefixframework.maven.archetypes</groupId>
12  <artifactId>pustefix-archetypes</artifactId>
13  <packaging>pom</packaging>
14  <version>0.18.15-SNAPSHOT</version>
15
16  <name>Pustefix Archetypes</name>
17  <description>Pustefix Archetypes</description>
18  <url>http://pustefixframework.org</url>
19
20  <modules>
21    <module>pustefix-archetype-application</module>
22    <module>pustefix-archetype-basic</module>
23    <module>pustefix-archetype-module</module>
24  </modules>
25
26  <profiles>
27    <profile>
28      <id>oneandone</id>
29      <distributionManagement>
30        <repository>
31          <id>oneandone-tools-releases</id>
32          <url>${oneandone.tools.releases}</url>
33        </repository>
34        <snapshotRepository>
35          <id>oneandone-tools-snapshots</id>
36          <url>${oneandone.tools.snapshots}</url>
37        </snapshotRepository>
38      </distributionManagement>
39    </profile>
40  </profiles>
41
42</project>
Note: See TracBrowser for help on using the browser.