root/trunk/pustefix-plugins/pom.xml

Revision 6206, 1.5 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.plugins</groupId>
12  <artifactId>pustefix-plugins</artifactId>
13  <packaging>pom</packaging>
14  <version>0.18.15-SNAPSHOT</version>
15
16  <name>Pustefix Plugins</name>
17  <description>Pustefix Plugins</description>
18  <url>http://pustefixframework.org</url>
19
20  <modules>
21    <module>pustefix-statuscode-plugin</module>
22    <module>pustefix-iwrapper-plugin</module>
23    <module>pustefix-generate-plugin</module>
24    <module>pustefix-webapp-plugin</module>
25    <module>pustefix-webservice-plugin</module>
26    <module>pustefix-validator-plugin</module>
27    <module>pustefix-xslt-plugin</module>
28    <module>pustefix-agent-plugin</module>
29  </modules>
30
31  <profiles>
32    <profile>
33      <id>oneandone</id>
34      <distributionManagement>
35        <repository>
36          <id>oneandone-tools-releases</id>
37          <url>${oneandone.tools.releases}</url>
38        </repository>
39        <snapshotRepository>
40          <id>oneandone-tools-snapshots</id>
41          <url>${oneandone.tools.snapshots}</url>
42        </snapshotRepository>
43      </distributionManagement>
44    </profile>
45  </profiles>
46</project>
Note: See TracBrowser for help on using the browser.