forked from jutzig/maven-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
124 lines (113 loc) · 4.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>20</version>
<relativePath>../pom/maven/pom.xml</relativePath>
</parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins-aggregator</artifactId>
<version>1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Maven Plugins Aggregator</name>
<description>Maven Plugins Aggregator</description>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/</developerConnection>
<url>http://svn.apache.org/viewvc/maven/plugins/trunk/</url>
</scm>
<modules>
<module>maven-plugins</module>
<module>maven-acr-plugin</module>
<module>maven-ant-plugin</module>
<module>maven-antrun-plugin</module>
<!-- HACK: Deliberately put before other plugins that employ maven-antrun-plugin to workaround MNG-1323 -->
<module>maven-eclipse-plugin</module>
<module>maven-assembly-plugin</module>
<module>maven-changelog-plugin</module>
<module>maven-changes-plugin</module>
<module>maven-checkstyle-plugin</module>
<module>maven-clean-plugin</module>
<module>maven-compiler-plugin</module>
<module>maven-dependency-plugin</module>
<module>maven-deploy-plugin</module>
<module>maven-doap-plugin</module>
<module>maven-docck-plugin</module>
<module>maven-ear-plugin</module>
<module>maven-ejb-plugin</module>
<!-- Moved to non-windows profile, since there's no gpg.exe available by default -->
<!-- <module>maven-gpg-plugin</module> -->
<module>maven-help-plugin</module>
<module>maven-install-plugin</module>
<!--Moved to maven-3 profile as a workaround for MNG-3814
<module>maven-invoker-plugin</module>-->
<module>maven-jar-plugin</module>
<module>maven-jarsigner-plugin</module>
<module>maven-javadoc-plugin</module>
<module>maven-linkcheck-plugin</module>
<module>maven-patch-plugin</module>
<module>maven-pdf-plugin</module>
<module>maven-pmd-plugin</module>
<!--Moved to maven-3 profile as a workaround for MNG-3814
<module>maven-project-info-reports-plugin</module>-->
<module>maven-rar-plugin</module>
<module>maven-reactor-plugin</module>
<!--Moved to maven-3 profile as a workaround for MNG-3814
<module>maven-remote-resources-plugin</module-->
<module>maven-repository-plugin</module>
<module>maven-resources-plugin</module>
<module>maven-site-plugin</module>
<module>maven-source-plugin</module>
<module>maven-stage-plugin</module>
<module>maven-toolchains-plugin</module>
<module>maven-verifier-plugin</module>
<module>maven-war-plugin</module>
<module>maven-scm-publish-plugin</module>
</modules>
<profiles>
<profile>
<id>maven-3</id>
<activation>
<file>
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
<exists>${basedir}</exists>
</file>
</activation>
<modules>
<module>maven-invoker-plugin</module>
<module>maven-project-info-reports-plugin</module>
<module>maven-remote-resources-plugin</module>
<module>maven-shade-plugin</module>
</modules>
</profile>
<profile>
<id>non-windows</id>
<activation>
<os>
<family>!windows</family>
</os>
</activation>
<modules>
<module>maven-gpg-plugin</module>
</modules>
</profile>
</profiles>
</project>