blob: 30d0922a22c4afe7c8c0e6cf49a660b05744dd59 [file] [log] [blame]
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.virgo.bundlor</groupId>
<artifactId>org.eclipse.virgo.bundlor.maven.sample</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Bundlor Maven Plugin Transform Sample</name>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.virgo.bundlor</groupId>
<artifactId>org.eclipse.virgo.bundlor.maven</artifactId>
<version>1.1.0.M05</version>
<executions>
<execution>
<id>bundlor</id>
<goals>
<goal>bundlor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>
target/classes/META-INF/MANIFEST.MF
</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>eclipse.virgo.build.bundles.snapshot</id>
<name>Eclipse Virgo Build</name>
<url>http://build.eclipse.org/rt/virgo/maven/bundles/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>eclipse.virgo.build.bundles.milestone</id>
<name>Eclipse Virgo Build</name>
<url>http://build.eclipse.org/rt/virgo/maven/bundles/milestone</url>
</pluginRepository>
<pluginRepository>
<id>eclipse.virgo.build.bundles.release</id>
<name>Eclipse Virgo Build</name>
<url>http://build.eclipse.org/rt/virgo/maven/bundles/release</url>
</pluginRepository>
<pluginRepository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</pluginRepository>
</pluginRepositories>
</project>