/[Apache-SVN]/maven/pom/trunk/asf/pom.xml
ViewVC logotype

Contents of /maven/pom/trunk/asf/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 836352 - (show annotations)
Sun Nov 15 12:56:38 2009 UTC (8 days, 17 hours ago) by bentmann
File MIME type: text/xml
File size: 14362 byte(s)
o Added note about version for maven-javadoc-plugin
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4 Licensed to the Apache Software Foundation (ASF) under one
5 or more contributor license agreements. See the NOTICE file
6 distributed with this work for additional information
7 regarding copyright ownership. The ASF licenses this file
8 to you under the Apache License, Version 2.0 (the
9 "License"); you may not use this file except in compliance
10 with the License. You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing,
15 software distributed under the License is distributed on an
16 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 KIND, either express or implied. See the License for the
18 specific language governing permissions and limitations
19 under the License.
20 -->
21
22 <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">
23 <modelVersion>4.0.0</modelVersion>
24
25 <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does
26 define the settings common to all projects at Apache
27
28 As of Version 6, this includes a standard release profile that all projects can use. If the profile is not appropriate for your project, define your own release profile and change the release plugin configuration parameter <arguments> </arguments> to activate your profile instead of the apache-release profile.
29
30 Standard versions of plugins are also defined, these may be overridden by individual projects as well.
31 -->
32 <groupId>org.apache</groupId>
33 <artifactId>apache</artifactId>
34 <version>8-SNAPSHOT</version>
35 <packaging>pom</packaging>
36 <name>The Apache Software Foundation</name>
37 <description>
38 The Apache Software Foundation provides support for the Apache community of open-source software projects.
39 The Apache projects are characterized by a collaborative, consensus based development process, an open and
40 pragmatic software license, and a desire to create high quality software that leads the way in its field.
41 We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
42 and users.
43 </description>
44 <licenses>
45 <license>
46 <name>The Apache Software License, Version 2.0</name>
47 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
48 <distribution>repo</distribution>
49 </license>
50 </licenses>
51 <organization>
52 <name>The Apache Software Foundation</name>
53 <url>http://www.apache.org/</url>
54 </organization>
55 <url>http://www.apache.org/</url>
56 <repositories>
57 <repository>
58 <id>apache.snapshots</id>
59 <name>Apache Snapshot Repository</name>
60 <url>http://repository.apache.org/snapshots</url>
61 <releases>
62 <enabled>false</enabled>
63 </releases>
64 </repository>
65 </repositories>
66
67 <distributionManagement>
68 <!-- Site omitted - each project must provide their own -->
69 <repository>
70 <id>apache.releases.https</id>
71 <name>Apache Release Distribution Repository</name>
72 <url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
73 </repository>
74 <snapshotRepository>
75 <id>apache.snapshots.https</id>
76 <name>${distMgmtSnapshotsName}</name>
77 <url>${distMgmtSnapshotsUrl}</url>
78 </snapshotRepository>
79 </distributionManagement>
80 <mailingLists>
81 <mailingList>
82 <name>Apache Announce List</name>
83 <subscribe>announce-subscribe@apache.org</subscribe>
84 <unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
85 <post>announce@apache.org</post>
86 <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
87 </mailingList>
88 </mailingLists>
89 <properties>
90 <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
91 <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
92 <organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo>
93 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
94 <sourceReleaseAssemblyDescriptor>source-release</sourceReleaseAssemblyDescriptor>
95 </properties>
96 <scm>
97 <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/trunk/asf</connection>
98 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf</developerConnection>
99 <url>http://svn.apache.org/viewvc/maven/pom/trunk/asf</url>
100 </scm>
101
102 <build>
103 <pluginManagement>
104 <plugins>
105 <!-- set versions of common plugins for reproducibility, ordered alphabetically -->
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-antrun-plugin</artifactId>
109 <version>1.3</version>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-assembly-plugin</artifactId>
114 <version>2.2-beta-4</version>
115 </plugin>
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-clean-plugin</artifactId>
119 <version>2.3</version>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-compiler-plugin</artifactId>
124 <version>2.0.2</version>
125 <configuration>
126 <source>1.4</source>
127 <target>1.4</target>
128 <encoding>${project.build.sourceEncoding}</encoding>
129 </configuration>
130 </plugin>
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-deploy-plugin</artifactId>
134 <version>2.4</version>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-docck-plugin</artifactId>
139 <version>1.0</version>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-enforcer-plugin</artifactId>
144 <version>1.0-beta-1</version>
145 </plugin>
146 <plugin>
147 <groupId>org.apache.maven.plugins</groupId>
148 <artifactId>maven-gpg-plugin</artifactId>
149 <version>1.0-alpha-4</version>
150 </plugin>
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-install-plugin</artifactId>
154 <version>2.3</version>
155 </plugin>
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-invoker-plugin</artifactId>
159 <version>1.5</version>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-jar-plugin</artifactId>
164 <version>2.2</version>
165 <configuration>
166 <archive>
167 <manifest>
168 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
169 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
170 </manifest>
171 </archive>
172 </configuration>
173 </plugin>
174 <plugin>
175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-javadoc-plugin</artifactId>
177 <!-- NOTE: 2.6.x is generally unusuable due to MJAVADOC-275 -->
178 <version>2.5</version>
179 </plugin>
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-plugin-plugin</artifactId>
183 <version>2.5.1</version>
184 </plugin>
185 <!-- START SNIPPET: release-plugin-configuration -->
186 <plugin>
187 <groupId>org.apache.maven.plugins</groupId>
188 <artifactId>maven-release-plugin</artifactId>
189 <version>2.0-beta-9</version>
190 <configuration>
191 <useReleaseProfile>false</useReleaseProfile>
192 <goals>deploy</goals>
193 <arguments>-Papache-release</arguments>
194 </configuration>
195 </plugin>
196 <!-- END SNIPPET: release-plugin-configuration -->
197 <plugin>
198 <groupId>org.apache.maven.plugins</groupId>
199 <artifactId>maven-remote-resources-plugin</artifactId>
200 <version>1.1</version>
201 </plugin>
202 <plugin>
203 <groupId>org.apache.maven.plugins</groupId>
204 <artifactId>maven-resources-plugin</artifactId>
205 <version>2.4</version>
206 <configuration>
207 <encoding>${project.build.sourceEncoding}</encoding>
208 </configuration>
209 </plugin>
210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-scm-plugin</artifactId>
213 <version>1.2</version>
214 </plugin>
215 <plugin>
216 <groupId>org.apache.maven.plugins</groupId>
217 <artifactId>maven-site-plugin</artifactId>
218 <version>2.0.1</version>
219 </plugin>
220 <plugin>
221 <groupId>org.apache.maven.plugins</groupId>
222 <artifactId>maven-source-plugin</artifactId>
223 <version>2.1.1</version>
224 </plugin>
225 <plugin>
226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-surefire-plugin</artifactId>
228 <version>2.4.3</version>
229 </plugin>
230 <plugin>
231 <groupId>org.codehaus.mojo</groupId>
232 <artifactId>clirr-maven-plugin</artifactId>
233 <version>2.2.2</version>
234 </plugin>
235 <plugin>
236 <groupId>org.codehaus.plexus</groupId>
237 <artifactId>plexus-maven-plugin</artifactId>
238 <version>1.3.8</version>
239 </plugin>
240 <plugin>
241 <groupId>org.codehaus.modello</groupId>
242 <artifactId>modello-maven-plugin</artifactId>
243 <version>1.1</version>
244 </plugin>
245 </plugins>
246 </pluginManagement>
247 <plugins>
248 <!-- We want to package up license resources in the JARs produced -->
249 <plugin>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-remote-resources-plugin</artifactId>
252 <executions>
253 <execution>
254 <goals>
255 <goal>process</goal>
256 </goals>
257 <configuration>
258 <resourceBundles>
259 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
260 </resourceBundles>
261 </configuration>
262 </execution>
263 </executions>
264 </plugin>
265 </plugins>
266 </build>
267
268 <reporting>
269 <plugins>
270 <plugin>
271 <artifactId>maven-project-info-reports-plugin</artifactId>
272 <version>2.1.2</version>
273 </plugin>
274 </plugins>
275 </reporting>
276
277 <profiles>
278 <!-- START SNIPPET: release-profile -->
279 <profile>
280 <id>apache-release</id>
281 <build>
282 <plugins>
283 <!-- Create a source-release artifact that contains the fully buildable
284 project directory source structure. This is the artifact which is
285 the official subject of any release vote. -->
286 <plugin>
287 <artifactId>maven-assembly-plugin</artifactId>
288 <dependencies>
289 <dependency>
290 <groupId>org.apache.apache.resources</groupId>
291 <artifactId>apache-source-release-assembly-descriptor</artifactId>
292 <version>1.0.2</version>
293 </dependency>
294 <dependency>
295 <!-- NOTE: The fix for PLXUTILS-120 is crucial for the new assembly descriptor -->
296 <groupId>org.codehaus.plexus</groupId>
297 <artifactId>plexus-utils</artifactId>
298 <version>2.0.1</version>
299 </dependency>
300 </dependencies>
301 <executions>
302 <execution>
303 <id>source-release-assembly</id>
304 <phase>package</phase>
305 <goals>
306 <goal>single</goal>
307 </goals>
308 <configuration>
309 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
310 <descriptorRefs>
311 <descriptorRef>${sourceReleaseAssemblyDescriptor}</descriptorRef>
312 </descriptorRefs>
313 <tarLongFileFormat>gnu</tarLongFileFormat>
314 </configuration>
315 </execution>
316 </executions>
317 </plugin>
318 <!-- We want to sign the artifact, the POM, and all attached artifacts -->
319 <plugin>
320 <groupId>org.apache.maven.plugins</groupId>
321 <artifactId>maven-gpg-plugin</artifactId>
322 <configuration>
323 <passphrase>${gpg.passphrase}</passphrase>
324 </configuration>
325 <executions>
326 <execution>
327 <goals>
328 <goal>sign</goal>
329 </goals>
330 </execution>
331 </executions>
332 </plugin>
333 <!-- We want to deploy the artifact to a staging location for perusal -->
334 <plugin>
335 <inherited>true</inherited>
336 <groupId>org.apache.maven.plugins</groupId>
337 <artifactId>maven-deploy-plugin</artifactId>
338 <configuration>
339 <updateReleaseInfo>true</updateReleaseInfo>
340 </configuration>
341 </plugin>
342 <plugin>
343 <groupId>org.apache.maven.plugins</groupId>
344 <artifactId>maven-source-plugin</artifactId>
345 <executions>
346 <execution>
347 <id>attach-sources</id>
348 <goals>
349 <goal>jar</goal>
350 </goals>
351 </execution>
352 </executions>
353 </plugin>
354 <plugin>
355 <groupId>org.apache.maven.plugins</groupId>
356 <artifactId>maven-javadoc-plugin</artifactId>
357 <configuration>
358 <encoding>${project.build.sourceEncoding}</encoding>
359 </configuration>
360 <executions>
361 <execution>
362 <id>attach-javadocs</id>
363 <goals>
364 <goal>jar</goal>
365 </goals>
366 </execution>
367 </executions>
368 </plugin>
369 </plugins>
370 </build>
371 </profile>
372 <!-- END SNIPPET: release-profile -->
373 </profiles>
374 </project>
375

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2