]> source.dussan.org Git - archiva.git/blob
8579fd492b33e4598c1bef27f21741eb4f0f3247
[archiva.git] /
1 <!--
2   ~ Licensed to the Apache Software Foundation (ASF) under one
3   ~ or more contributor license agreements.  See the NOTICE file
4   ~ distributed with this work for additional information
5   ~ regarding copyright ownership.  The ASF licenses this file
6   ~ to you under the Apache License, Version 2.0 (the
7   ~ "License"); you may not use this file except in compliance
8   ~ with the License.  You may obtain a copy of the License at
9   ~
10   ~   http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing,
13   ~ software distributed under the License is distributed on an
14   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   ~ KIND, either express or implied.  See the License for the
16   ~ specific language governing permissions and limitations
17   ~ under the License.
18   -->
19
20 <project>
21   <parent>
22     <artifactId>maven</artifactId>
23     <groupId>org.apache.maven</groupId>
24     <version>2.0</version>
25   </parent>
26   <modelVersion>4.0.0</modelVersion>
27   <groupId>org.apache.maven</groupId>
28   <artifactId>maven-model</artifactId>
29   <name>Maven Model</name>
30   <version>2.0</version>
31   <description>Maven Model</description>
32   <licenses>
33     <license>
34       <name>The Apache Software License, Version 2.0</name>
35       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
36       <distribution>repo</distribution>
37     </license>
38   </licenses>
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.codehaus.modello</groupId>
43         <artifactId>modello-maven-plugin</artifactId>
44         <version>2.0</version>
45         <executions>
46           <execution>
47             <goals>
48               <goal>xpp3-writer</goal>
49               <goal>java</goal>
50               <goal>xpp3-reader</goal>
51               <goal>xsd</goal>
52             </goals>
53           </execution>
54         </executions>
55         <configuration>
56           <version>4.0.0</version>
57           <model>maven.mdo</model>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62   <profiles>
63     <profile>
64       <id>all-models</id>
65       <build>
66         <plugins>
67           <plugin>
68             <groupId>org.codehaus.modello</groupId>
69             <artifactId>modello-maven-plugin</artifactId>
70             <executions>
71               <execution>
72                 <id>v3</id>
73                 <goals>
74                   <goal>xpp3-writer</goal>
75                   <goal>java</goal>
76                   <goal>xpp3-reader</goal>
77                   <goal>xsd</goal>
78                 </goals>
79                 <configuration>
80                   <version>3.0.0</version>
81                   <packageWithVersion>true</packageWithVersion>
82                 </configuration>
83               </execution>
84             </executions>
85           </plugin>
86           <plugin>
87             <artifactId>maven-jar-plugin</artifactId>
88             <executions>
89               <execution>
90                 <phase>package</phase>
91                 <goals>
92                   <goal>jar</goal>
93                 </goals>
94                 <configuration>
95                   <classifier>all</classifier>
96                 </configuration>
97               </execution>
98             </executions>
99           </plugin>
100         </plugins>
101       </build>
102     </profile>
103   </profiles>
104   <dependencies>
105     <dependency>
106       <groupId>org.codehaus.plexus</groupId>
107       <artifactId>plexus-utils</artifactId>
108       <version>1.0.5</version>
109     </dependency>
110   </dependencies>
111   <distributionManagement>
112     <status>deployed</status>
113   </distributionManagement>
114 </project>