Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 3 | <modelVersion>4.0.0</modelVersion>
|
Marcel Offermans | 18e6d3f | 2010-08-19 07:35:43 +0000 | [diff] [blame] | 4 |
|
| 5 | <parent>
|
| 6 | <groupId>org.apache.felix</groupId>
|
| 7 | <artifactId>dependencymanager-reactor</artifactId>
|
| 8 | <version>3.0.0-SNAPSHOT</version>
|
| 9 | </parent>
|
| 10 |
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 11 | <name>Apache Felix Dependency Manager Annotation Samples</name>
|
Marcel Offermans | 18e6d3f | 2010-08-19 07:35:43 +0000 | [diff] [blame] | 12 | <artifactId>org.apache.felix.dependencymanager.samples.annotation</artifactId>
|
| 13 | <packaging>bundle</packaging>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 14 |
|
| 15 | <dependencies>
|
| 16 | <dependency>
|
| 17 | <groupId>org.osgi</groupId>
|
| 18 | <artifactId>org.osgi.core</artifactId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 19 | </dependency>
|
| 20 | <dependency>
|
| 21 | <groupId>org.osgi</groupId>
|
| 22 | <artifactId>org.osgi.compendium</artifactId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 23 | </dependency>
|
| 24 | <dependency>
|
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 25 | <groupId>${pom.groupId}</groupId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 26 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 27 | </dependency>
|
| 28 | <dependency>
|
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 29 | <groupId>${pom.groupId}</groupId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.gogo.runtime</artifactId>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 31 | </dependency>
|
| 32 | </dependencies>
|
| 33 |
|
| 34 | <build>
|
| 35 | <plugins>
|
| 36 | <plugin>
|
| 37 | <groupId>org.apache.maven.plugins</groupId>
|
| 38 | <artifactId>maven-compiler-plugin</artifactId>
|
| 39 | <configuration>
|
| 40 | <source>1.5</source>
|
| 41 | <target>1.5</target>
|
| 42 | </configuration>
|
| 43 | </plugin>
|
| 44 |
|
| 45 | <plugin>
|
| 46 | <groupId>org.apache.felix</groupId>
|
| 47 | <artifactId>maven-bundle-plugin</artifactId>
|
| 48 | <version>1.4.0</version>
|
| 49 | <extensions>true</extensions>
|
| 50 | <configuration>
|
| 51 | <instructions>
|
| 52 | <Bundle-Name>Apache Felix Dependency Manager Annotation Sample</Bundle-Name>
|
| 53 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.samples.annotation</Bundle-SymbolicName>
|
Pierre De Rop | 0443465 | 2011-01-12 21:50:52 +0000 | [diff] [blame] | 54 | <Import-Package>org.apache.felix.service.command;status=provisional,*</Import-Package>
|
Pierre De Rop | cf7d7a6 | 2010-06-21 09:46:37 +0000 | [diff] [blame] | 55 | <Private-Package>org.apache.felix.dm.samples.annotation</Private-Package>
|
| 56 | </instructions>
|
| 57 | </configuration>
|
| 58 | </plugin>
|
| 59 |
|
| 60 | <plugin>
|
| 61 | <groupId>org.apache.felix</groupId>
|
| 62 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
| 63 | <version>3.0.0-SNAPSHOT</version>
|
| 64 | <executions>
|
| 65 | <execution>
|
| 66 | <goals>
|
| 67 | <goal>scan</goal>
|
| 68 | </goals>
|
| 69 | </execution>
|
| 70 | </executions>
|
| 71 | </plugin>
|
| 72 | </plugins>
|
| 73 | </build>
|
Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 74 | </project>
|