2006-07-07 12:23:28 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
~ Copyright 2005-2006 The Apache Software Foundation.
|
|
|
|
~
|
|
|
|
~ Licensed 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/maven-v4_0_0.xsd">
|
2005-09-25 02:00:04 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2006-01-04 01:14:17 +00:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-09-25 02:00:04 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
<name>Maven Embedder</name>
|
2006-12-07 09:52:49 +00:00
|
|
|
<properties>
|
2007-02-28 01:33:00 +00:00
|
|
|
<bundleVersion>2.1.0.v20070224-1541</bundleVersion>
|
2006-12-07 09:52:49 +00:00
|
|
|
</properties>
|
2005-09-25 02:00:04 +00:00
|
|
|
<build>
|
2006-12-07 09:52:49 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
2007-01-07 19:13:33 +00:00
|
|
|
</resources>
|
2005-09-25 02:00:04 +00:00
|
|
|
<plugins>
|
2005-09-26 15:33:13 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2006-12-07 09:52:49 +00:00
|
|
|
<version>2.1</version>
|
2005-09-26 15:33:13 +00:00
|
|
|
<configuration>
|
2006-12-07 09:52:49 +00:00
|
|
|
<finalName>${artifactId}-${bundleVersion}</finalName>
|
2005-09-26 15:33:13 +00:00
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
2006-12-07 09:52:49 +00:00
|
|
|
<archive>
|
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
2005-09-26 15:33:13 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2005-09-25 02:00:04 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2005-09-25 15:28:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
2006-04-07 15:57:09 +00:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2007-01-06 04:03:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
2006-04-07 15:57:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-tools</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-11-04 17:30:23 +00:00
|
|
|
</dependency>
|
2007-02-09 21:53:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
2007-01-07 19:13:33 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
</dependency>
|
2005-09-25 02:00:04 +00:00
|
|
|
</dependencies>
|
2007-02-28 02:54:07 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<site>
|
|
|
|
<id>apache.website</id>
|
|
|
|
<!--
|
|
|
|
<url>scp://people.apache.org/www/maven.apache.org/embedder/${project.version}/</url>
|
|
|
|
-->
|
|
|
|
<url>scp://people.apache.org/home/jvanzyl/public_html/embedder/</url>
|
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
2005-11-04 18:29:37 +00:00
|
|
|
</project>
|