2008-04-16 00:57:15 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-07-06 12:44:06 -04: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.
|
|
|
|
-->
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2009-03-01 03:55:40 -05: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">
|
2008-04-16 00:57:15 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-04-16 00:57:15 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2010-08-07 06:53:09 -04:00
|
|
|
<version>3.0-SNAPSHOT</version>
|
2008-04-16 00:57:15 -04:00
|
|
|
</parent>
|
2010-05-30 13:52:23 -04:00
|
|
|
|
2009-01-12 12:18:11 -05:00
|
|
|
<artifactId>apache-maven</artifactId>
|
2009-11-12 18:42:20 -05:00
|
|
|
<packaging>pom</packaging>
|
2010-05-30 13:52:23 -04:00
|
|
|
|
2008-04-16 00:57:15 -04:00
|
|
|
<name>Maven Distribution</name>
|
2010-05-30 13:52:23 -04:00
|
|
|
|
2008-04-16 00:57:15 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
|
|
|
</dependency>
|
2008-09-28 12:21:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-compat</artifactId>
|
|
|
|
</dependency>
|
2008-04-16 00:57:15 -04:00
|
|
|
<dependency>
|
2010-08-24 07:18:30 -04:00
|
|
|
<groupId>org.sonatype.spice</groupId>
|
|
|
|
<artifactId>spice-inject-plexus</artifactId>
|
2008-04-16 00:57:15 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- CLI -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-12-15 17:18:11 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2009-11-12 18:42:20 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test-compile</id>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2008-12-15 17:18:11 -05:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>basedir</name>
|
|
|
|
<value>${basedir}</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
2009-11-12 18:42:20 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2008-12-15 17:18:11 -05:00
|
|
|
</plugin>
|
2009-11-09 10:03:04 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-distro</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/bin.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2008-12-15 17:18:11 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-04-16 00:57:15 -04:00
|
|
|
<profiles>
|
2009-01-29 20:44:21 -05:00
|
|
|
<profile>
|
2008-04-16 00:57:15 -04:00
|
|
|
<id>standard</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-07-06 12:44:06 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-11-09 10:03:04 -05:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkMode>once</forkMode>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
2009-11-09 10:43:20 -05:00
|
|
|
<id>apache-release</id>
|
2009-11-09 10:03:04 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-04-16 00:57:15 -04:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2009-11-09 10:03:04 -05:00
|
|
|
<id>make-src-assembly</id>
|
2008-04-16 00:57:15 -04:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2008-10-20 17:02:39 -04:00
|
|
|
<descriptors>
|
2009-11-09 10:03:04 -05:00
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
2008-10-20 17:02:39 -04:00
|
|
|
</descriptors>
|
2009-11-09 10:03:04 -05:00
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
2008-04-16 00:57:15 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<!-- Single Test -->
|
|
|
|
<id>st</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/MavenEmbedderTest.java</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2008-07-11 17:16:59 -04:00
|
|
|
</project>
|