| <!-- |
| 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. |
| --> |
| <project> |
| <parent> |
| <artifactId>felix</artifactId> |
| <groupId>org.apache.felix</groupId> |
| <version>1.0.4</version> |
| <relativePath>../../../pom/pom.xml</relativePath> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.felix.plugins</groupId> |
| <artifactId>maven-osgi-plugin</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <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.2</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> |