root/tags/pustefixframework-0.15.6/pom.xml

Revision 5335, 6.8 KB (checked in by mtld, 21 months ago)

[maven-release-plugin] prepare release pustefixframework-0.15.6

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  <groupId>org.pustefixframework</groupId>
6  <artifactId>pustefixframework</artifactId>
7  <version>0.15.6</version>
8  <packaging>pom</packaging>
9  <name>Pustefix Framework</name>
10  <url>http://pustefixframework.org</url>
11
12  <licenses>
13    <license>
14      <name>LGPL</name>
15      <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
16      <distribution>repo</distribution>
17    </license>
18  </licenses>
19
20  <organization>
21    <name>United Internet</name>
22    <url>http://www.unitedinternet.de/</url>
23  </organization>
24
25  <issueManagement>
26    <system>trac</system>
27    <url>http://dev.pustefix-framework.org/</url>
28  </issueManagement>
29
30  <scm>
31    <connection>scm:svn:https://pustefix.svn.sourceforge.net/svnroot/pustefix/tags/pustefixframework-0.15.6</connection>
32    <developerConnection>scm:svn:https://pustefix.svn.sourceforge.net/svnroot/pustefix/tags/pustefixframework-0.15.6</developerConnection>
33    <url>http://dev.pustefix-framework.org/browser/tags/pustefixframework-0.15.6</url>
34  </scm>
35
36  <properties>
37    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38    <makemode>test</makemode>
39  </properties>
40
41  <dependencies>
42    <dependency>
43      <groupId>junit</groupId>
44      <artifactId>junit</artifactId>
45      <version>4.5</version>
46      <scope>test</scope>
47    </dependency>
48  </dependencies>
49
50  <developers>
51    <developer>
52      <name>Jens Lautenbacher</name>
53      <id>jenstl</id>
54      <email>jenstl@users.sourceforge.net</email>
55      <organization>United Internet</organization>
56      <roles>
57        <role>Java Development</role>
58      </roles>
59      <timezone>+1</timezone>
60    </developer>
61    <developer>
62      <name>Martin Leidig</name>
63      <id>mtld</id>
64      <email>mtld@users.sourceforge.net</email>
65      <organization>United Internet</organization>
66      <roles>
67        <role>Java Development</role>
68      </roles>
69      <timezone>+1</timezone>
70    </developer>
71    <developer>
72      <name>Sebastian Marsching</name>
73      <id>smarsching</id>
74      <email>smarsching@users.sourceforge.net</email>
75      <organization>United Internet</organization>
76      <roles>
77        <role>Java Development</role>
78      </roles>
79      <timezone>+1</timezone>
80    </developer>
81    <developer>
82      <name>Michael Hartmeier</name>
83      <id>mlhartme</id>
84      <email>mlhartme@users.sourceforge.net</email>
85      <organization>United Internet</organization>
86      <roles>
87        <role>Java Development</role>
88      </roles>
89      <timezone>+1</timezone>
90    </developer>
91  </developers>
92
93  <build>
94    <plugins>
95      <plugin>
96        <groupId>org.apache.maven.plugins</groupId>
97        <artifactId>maven-eclipse-plugin</artifactId>
98        <version>2.5.1</version>
99      </plugin>
100      <plugin>
101        <groupId>org.apache.maven.plugins</groupId>
102        <artifactId>maven-compiler-plugin</artifactId>
103        <configuration>
104          <source>1.5</source>
105          <target>1.5</target>
106        </configuration>
107      </plugin>
108      <plugin>
109        <groupId>org.apache.maven.plugins</groupId>
110        <artifactId>maven-jar-plugin</artifactId>
111        <configuration>
112          <archive>
113            <addMavenDescriptor>false</addMavenDescriptor>
114            <manifest>
115              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
116              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
117            </manifest>
118          </archive>
119        </configuration>
120      </plugin>
121      <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-release-plugin</artifactId>
124         <version>2.0-beta-9</version>
125         <configuration>
126           <!-- TODO: also building the site failed persistently with !ClassNotFoundException for !GlobalConfig
127                      (yes, I tried mvn install, it did not help). -->
128           <goals>deploy</goals>
129         </configuration>
130       </plugin>
131    </plugins>
132  </build>
133
134  <reporting>
135    <plugins>
136      <plugin>
137        <groupId>org.apache.maven.plugins</groupId>
138        <artifactId>maven-project-info-reports-plugin</artifactId>
139        <version>2.1</version>
140      </plugin>
141      <plugin>
142        <groupId>org.apache.maven.plugins</groupId>
143        <artifactId>maven-javadoc-plugin</artifactId>
144      </plugin>
145      <plugin>
146        <groupId>org.apache.maven.plugins</groupId>
147        <artifactId>maven-changelog-plugin</artifactId>
148      </plugin>
149      <plugin>
150        <groupId>org.apache.maven.plugins</groupId>
151        <artifactId>maven-jxr-plugin</artifactId>
152      </plugin>
153    </plugins>
154  </reporting>
155
156  <distributionManagement>
157    <repository>
158      <id>pustefix</id>
159      <name>Pustefix Maven Release Repository</name>
160      <url>scpexe://pustefix@pustefix-hp.schlund.de/home/pustefix/repository/maven</url>
161      <uniqueVersion>false</uniqueVersion>
162    </repository>
163    <snapshotRepository>
164      <id>pustefix-snapshots</id>
165      <name>Pustefix Maven Snapshot Repository</name>
166      <url>scpexe://pustefix@pustefix-hp.schlund.de/home/pustefix/repository/maven</url>
167      <uniqueVersion>true</uniqueVersion>
168    </snapshotRepository>
169 
170    <site>
171      <id>pustefix</id>
172      <url>scpexe://pustefix@pustefix-hp.schlund.de/var/www/pustefix-docs/0.15.x</url>
173    </site>
174  </distributionManagement>
175  <profiles>
176    <profile>
177      <id>oneandone</id>
178      <properties>
179        <oneandone.releases>http://mavenrepo.united.domain:8081/nexus/content/repositories/1und1-stable</oneandone.releases>
180        <oneandone.snapshots>http://mavenrepo.united.domain:8081/nexus/content/repositories/1und1-snapshots</oneandone.snapshots>
181        <oneandone.tools.releases>http://mavenrepo.united.domain:8081/nexus/content/repositories/1und1-tools-releases</oneandone.tools.releases>
182        <oneandone.tools.snapshots>http://mavenrepo.united.domain:8081/nexus/content/repositories/1und1-tools-snapshots</oneandone.tools.snapshots>
183      </properties>
184      <distributionManagement>
185        <repository>
186          <id>oneandone-releases</id>
187          <url>${oneandone.releases}</url>
188        </repository>
189        <snapshotRepository>
190          <id>oneandone-snapshots</id>
191          <url>${oneandone.snapshots}</url>
192        </snapshotRepository>
193      </distributionManagement>
194    </profile>
195  </profiles>
196 
197  <modules>
198    <module>pustefix-libs</module>
199    <module>pustefix-webservices</module>
200    <module>pustefix-plugins</module>
201    <module>pustefix-archetypes</module>
202    <module>pustefix-core</module>
203    <module>pustefix-samples</module>
204    <module>pustefix-editor</module>
205    <module>pustefix-docbook</module>
206    <module>pustefix-live</module>
207    <module>pustefix-tutorial</module>
208  </modules>
209
210</project>
Note: See TracBrowser for help on using the browser.