root/tags/release-1.0.2/pustefix-plugins/pom.xml

Revision 4988, 1.8 KB (checked in by mtld, 2 years ago)

set version to 1.0.2

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>1.0.2</version>
9  </parent>
10
11  <groupId>org.pustefixframework.maven.plugins</groupId>
12  <artifactId>pustefix-plugins</artifactId>
13  <packaging>pom</packaging>
14  <version>1.0.2</version>
15
16  <name>Pustefix Plugins</name>
17  <description>Pustefix Plugins</description>
18  <url>http://pustefixframework.org</url>
19
20  <properties>
21    <maven.api.version>2.2.1</maven.api.version>
22  </properties>
23
24  <modules>
25    <module>pustefix-statuscode-plugin</module>
26    <module>pustefix-iwrapper-plugin</module>
27    <module>pustefix-iwrapperbean-plugin</module>
28    <!--<module>pustefix-generate-plugin</module>-->
29    <module>pustefix-webapp-plugin</module>
30    <!--<module>pustefix-webservice-plugin</module>-->
31    <module>pustefix-launcher-plugin</module>
32    <module>pustefix-eclipse-plugin</module>
33    <module>pustefix-autoconfig-plugin</module>
34    <module>pustefix-bundleindex-plugin</module>
35    <module>pustefix-manifestcheck-plugin</module>
36  </modules>
37
38  <profiles>
39    <profile>
40      <id>oneandone</id>
41      <distributionManagement>
42        <repository>
43          <id>oneandone-tools-releases</id>
44          <url>${oneandone.tools.releases}</url>
45        </repository>
46        <snapshotRepository>
47          <id>oneandone-tools-snapshots</id>
48          <url>${oneandone.tools.snapshots}</url>
49        </snapshotRepository>
50      </distributionManagement>
51    </profile>
52  </profiles>
53</project>
Note: See TracBrowser for help on using the browser.