Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 19 | <project> |
Michael E. Rodriguez | 634d1a3 | 2005-11-01 02:18:06 +0000 | [diff] [blame] | 20 | <parent> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 21 | <artifactId>felix</artifactId> |
| 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Karl Pauls | 3c9585f | 2007-07-12 08:36:56 +0000 | [diff] [blame] | 24 | <relativePath>../../../pom/pom.xml</relativePath> |
Michael E. Rodriguez | 634d1a3 | 2005-11-01 02:18:06 +0000 | [diff] [blame] | 25 | </parent> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
Michael E. Rodriguez | cc926d6 | 2005-11-01 02:30:27 +0000 | [diff] [blame] | 27 | <groupId>org.apache.felix.plugins</groupId> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 28 | <artifactId>maven-osgi-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 29 | <version>0.9.0-SNAPSHOT</version> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 30 | <packaging>maven-plugin</packaging> |
| 31 | <name>Maven OSGi Plugin</name> |
Alex Karasulu | 7251fce | 2006-03-08 19:23:14 +0000 | [diff] [blame] | 32 | |
| 33 | <repositories> |
| 34 | <!-- For snapshots (no release jars or non-apache jars) --> |
| 35 | <repository> |
| 36 | <id>apache.snapshots</id> |
| 37 | <name>Apache Snapshot Repository</name> |
Trustin Lee | e8c786e | 2006-08-10 00:46:12 +0000 | [diff] [blame] | 38 | <url>http://people.apache.org/repo/m2-snapshot-repository</url> |
Alex Karasulu | 7251fce | 2006-03-08 19:23:14 +0000 | [diff] [blame] | 39 | </repository> |
| 40 | </repositories> |
| 41 | |
Richard S. Hall | 61e4a8e | 2007-02-15 07:18:57 +0000 | [diff] [blame] | 42 | <!-- |
Trustin Lee | e8c786e | 2006-08-10 00:46:12 +0000 | [diff] [blame] | 43 | <pluginRepositories> |
| 44 | <pluginRepository> |
| 45 | <id>snapshots</id> |
| 46 | <name>snapshot plugins</name> |
| 47 | <url>http://snapshots.maven.codehaus.org/maven2</url> |
| 48 | </pluginRepository> |
| 49 | <pluginRepository> |
| 50 | <id>apache.snapshots</id> |
| 51 | <name>Apache Snapshot Plugins</name> |
| 52 | <url>http://people.apache.org/repo/m2-snapshot-repository</url> |
| 53 | </pluginRepository> |
| 54 | </pluginRepositories> |
Richard S. Hall | 61e4a8e | 2007-02-15 07:18:57 +0000 | [diff] [blame] | 55 | --> |
Trustin Lee | e8c786e | 2006-08-10 00:46:12 +0000 | [diff] [blame] | 56 | |
| 57 | <distributionManagement> |
| 58 | <snapshotRepository> |
| 59 | <id>apache.snapshots</id> |
| 60 | <url> |
| 61 | scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository |
| 62 | </url> |
| 63 | </snapshotRepository> |
| 64 | <repository> |
| 65 | <name>ASF Mirrored M2 Distributions</name> |
| 66 | <id>apache.snapshots</id> |
| 67 | <url> |
| 68 | scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository |
| 69 | </url> |
| 70 | </repository> |
| 71 | |
| 72 | </distributionManagement> |
| 73 | |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 74 | <dependencies> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.maven</groupId> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 77 | <artifactId>maven-plugin-api</artifactId> |
| 78 | <version>2.0</version> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.apache.maven</groupId> |
Michael E. Rodriguez | 634d1a3 | 2005-11-01 02:18:06 +0000 | [diff] [blame] | 82 | <artifactId>maven-archiver</artifactId> |
Richard S. Hall | 524390f | 2007-07-26 16:37:20 +0000 | [diff] [blame] | 83 | <version>2.2</version> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
Michael E. Rodriguez | 634d1a3 | 2005-11-01 02:18:06 +0000 | [diff] [blame] | 86 | <groupId>org.codehaus.plexus</groupId> |
| 87 | <artifactId>plexus-utils</artifactId> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 88 | <version>1.1</version> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
Michael E. Rodriguez | 634d1a3 | 2005-11-01 02:18:06 +0000 | [diff] [blame] | 91 | <groupId>org.apache.maven</groupId> |
| 92 | <artifactId>maven-artifact</artifactId> |
| 93 | <version>2.0</version> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 94 | </dependency> |
Timothy Bennett | a7d67fe | 2005-08-23 04:22:29 +0000 | [diff] [blame] | 95 | </dependencies> |
| 96 | </project> |