2008-03-23 17:49:56 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-04-22 23:04:06 +00:00
|
|
|
|
2008-07-06 17:21:25 +00:00
|
|
|
<!--
|
2008-10-01 13:13:51 +00:00
|
|
|
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.
|
2008-07-06 17:21:25 +00:00
|
|
|
-->
|
2009-04-22 23:04:06 +00:00
|
|
|
|
2009-03-01 08:55:40 +00:00
|
|
|
<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">
|
2009-04-22 23:04:06 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2008-02-29 22:58:00 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2008-09-28 12:16:53 +00:00
|
|
|
<artifactId>maven</artifactId>
|
2010-01-06 10:49:23 +00:00
|
|
|
<version>3.0-SNAPSHOT</version>
|
2008-02-29 22:58:00 +00:00
|
|
|
</parent>
|
2009-04-22 23:04:06 +00:00
|
|
|
|
2008-09-28 12:16:53 +00:00
|
|
|
<artifactId>maven-compat</artifactId>
|
|
|
|
<name>Maven Compat</name>
|
2009-04-22 23:04:06 +00:00
|
|
|
|
2008-02-29 22:58:00 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2008-09-28 12:16:53 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2008-10-01 13:13:51 +00:00
|
|
|
<artifactId>maven-model</artifactId>
|
2008-09-28 12:16:53 +00:00
|
|
|
</dependency>
|
2009-05-23 19:44:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model-builder</artifactId>
|
|
|
|
</dependency>
|
2009-10-22 17:59:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
</dependency>
|
2009-10-22 17:34:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
2009-10-26 20:16:00 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
|
|
|
</dependency>
|
2008-09-28 12:16:53 +00:00
|
|
|
<dependency>
|
2008-11-27 22:32:16 +00:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2008-10-01 13:13:51 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-annotations</artifactId>
|
2008-02-29 22:58:00 +00:00
|
|
|
</dependency>
|
2008-11-27 22:32:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
2009-09-30 14:09:39 +00:00
|
|
|
<scope>test</scope>
|
2009-05-12 15:08:53 +00:00
|
|
|
</dependency>
|
2008-11-27 22:32:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<version>1.2_Java1.3</version>
|
|
|
|
<scope>test</scope>
|
2008-12-01 02:49:21 +00:00
|
|
|
</dependency>
|
2008-02-29 22:58:00 +00:00
|
|
|
</dependencies>
|
2009-07-28 22:01:48 +00:00
|
|
|
|
2008-10-01 13:13:51 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2008-12-01 02:49:21 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
|
|
|
</plugin>
|
2008-11-27 22:32:16 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<version>1.0.0</version>
|
2008-12-14 22:07:08 +00:00
|
|
|
<models>
|
2009-08-21 13:07:32 +00:00
|
|
|
<model>src/main/mdo/profiles.mdo</model>
|
2009-08-21 15:04:07 +00:00
|
|
|
<model>src/main/mdo/paramdoc.mdo</model>
|
2008-12-14 22:07:08 +00:00
|
|
|
</models>
|
2008-11-27 22:32:16 +00:00
|
|
|
</configuration>
|
2008-12-01 02:49:21 +00:00
|
|
|
</plugin>
|
2008-10-01 13:13:51 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-08-21 13:07:32 +00:00
|
|
|
</project>
|