| <project> |
| <parent> |
| <artifactId>felix</artifactId> |
| <groupId>org.apache.felix</groupId> |
| <version>0.8.0-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.felix.plugins</groupId> |
| <artifactId>maven-osgi-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| <name>Maven OSGi Plugin</name> |
| |
| <repositories> |
| <!-- For snapshots (no release jars or non-apache jars) --> |
| <repository> |
| <id>apache.snapshots</id> |
| <name>Apache Snapshot Repository</name> |
| <url>http://people.apache.org/repo/m2-snapshot-repository</url> |
| </repository> |
| </repositories> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>snapshots</id> |
| <name>snapshot plugins</name> |
| <url>http://snapshots.maven.codehaus.org/maven2</url> |
| </pluginRepository> |
| <pluginRepository> |
| <id>apache.snapshots</id> |
| <name>Apache Snapshot Plugins</name> |
| <url>http://people.apache.org/repo/m2-snapshot-repository</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <distributionManagement> |
| <snapshotRepository> |
| <id>apache.snapshots</id> |
| <url> |
| scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository |
| </url> |
| </snapshotRepository> |
| <repository> |
| <name>ASF Mirrored M2 Distributions</name> |
| <id>apache.snapshots</id> |
| <url> |
| scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository |
| </url> |
| </repository> |
| |
| </distributionManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-archiver</artifactId> |
| <version>2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>1.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>2.0</version> |
| </dependency> |
| </dependencies> |
| </project> |