2006-07-07 08:23:28 -04: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-24 22:00:04 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2006-01-03 20:14:17 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-09-24 22:00:04 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
<name>Maven Embedder</name>
|
2006-12-07 04:52:49 -05:00
|
|
|
<properties>
|
2006-12-31 21:52:56 -05:00
|
|
|
<bundleVersion>2.1.0.v20061231-1929</bundleVersion>
|
2006-12-07 04:52:49 -05:00
|
|
|
</properties>
|
2005-09-24 22:00:04 -04:00
|
|
|
<build>
|
2006-12-07 04:52:49 -05:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2005-09-24 22:00:04 -04:00
|
|
|
<plugins>
|
2005-09-26 11:33:13 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2006-12-07 04:52:49 -05:00
|
|
|
<version>2.1</version>
|
2005-09-26 11:33:13 -04:00
|
|
|
<configuration>
|
2006-12-07 04:52:49 -05:00
|
|
|
<finalName>${artifactId}-${bundleVersion}</finalName>
|
2005-09-26 11:33:13 -04:00
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
2006-12-07 04:52:49 -05:00
|
|
|
<archive>
|
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
<!--
|
|
|
|
|
|
|
|
This doesn't work and should
|
|
|
|
|
|
|
|
<manifestEntries>
|
|
|
|
<Manifest-Version>1.0</Manifest-Version>
|
|
|
|
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
|
|
|
<Bundle-Name>Maven 2.x Embedder Plug-in</Bundle-Name>
|
|
|
|
<Bundle-Vendor>org.apache.maven</Bundle-Vendor>
|
|
|
|
<Bundle-SymbolicName>org.maven.ide.embedder</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Bundle-ClassPath>.</Bundle-ClassPath>
|
|
|
|
</manifestEntries>
|
|
|
|
-->
|
|
|
|
</archive>
|
2005-09-26 11:33:13 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2005-09-24 22:00:04 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2005-09-25 11:28:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
2006-04-07 11:57:09 -04:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-tools</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-11-04 12:30:23 -05:00
|
|
|
</dependency>
|
2005-09-24 22:00:04 -04:00
|
|
|
</dependencies>
|
2006-12-07 04:52:49 -05:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>apache.releases</id>
|
|
|
|
<name>Apache Release Distribution Repository</name>
|
|
|
|
<url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<name>Apache Development Snapshot Repository</name>
|
|
|
|
<url>file:///tmp/embedder</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2005-11-04 13:29:37 -05:00
|
|
|
</project>
|