]> source.dussan.org Git - archiva.git/blob
76ca28cbc9ace106bb41847bc1e95b85f0d9551c
[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   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.codehaus.modello</groupId>
36         <artifactId>modello-maven-plugin</artifactId>
37         <executions>
38           <execution>
39             <goals>
40               <goal>xpp3-writer</goal>
41               <goal>java</goal>
42               <goal>xpp3-reader</goal>
43               <goal>xsd</goal>
44             </goals>
45           </execution>
46         </executions>
47         <configuration>
48           <version>4.0.0</version>
49           <model>maven.mdo</model>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54   <profiles>
55     <profile>
56       <id>all-models</id>
57       <build>
58         <plugins>
59           <plugin>
60             <groupId>org.codehaus.modello</groupId>
61             <artifactId>modello-maven-plugin</artifactId>
62             <executions>
63               <execution>
64                 <id>v3</id>
65                 <goals>
66                   <goal>xpp3-writer</goal>
67                   <goal>java</goal>
68                   <goal>xpp3-reader</goal>
69                   <goal>xsd</goal>
70                 </goals>
71                 <configuration>
72                   <version>3.0.0</version>
73                   <packageWithVersion>true</packageWithVersion>
74                 </configuration>
75               </execution>
76             </executions>
77           </plugin>
78           <plugin>
79             <artifactId>maven-jar-plugin</artifactId>
80             <executions>
81               <execution>
82                 <phase>package</phase>
83                 <goals>
84                   <goal>jar</goal>
85                 </goals>
86                 <configuration>
87                   <classifier>all</classifier>
88                 </configuration>
89               </execution>
90             </executions>
91           </plugin>
92         </plugins>
93       </build>
94     </profile>
95   </profiles>
96   <dependencies>
97     <dependency>
98       <groupId>org.codehaus.plexus</groupId>
99       <artifactId>plexus-utils</artifactId>
100     </dependency>
101   </dependencies>
102   <distributionManagement>
103     <status>deployed</status>
104   </distributionManagement>
105 </project>