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"
|
| 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>
|
| 4 | <packaging>bundle</packaging>
|
| 5 | <groupId>test</groupId>
|
| 6 | <artifactId>org.apache.felix.dependencymanager.samples.annotation</artifactId>
|
| 7 | <version>3.0.0-SNAPSHOT</version>
|
| 8 | <name>Apache Felix Dependency Manager Annotation Samples</name>
|
| 9 |
|
| 10 | <dependencies>
|
| 11 | <dependency>
|
Pierre De Rop | f5793eb | 2010-01-15 22:31:42 +0000 | [diff] [blame] | 12 | <groupId>org.osgi</groupId>
|
| 13 | <artifactId>org.osgi.core</artifactId>
|
| 14 | <version>4.1.0</version>
|
| 15 | </dependency>
|
| 16 | <dependency>
|
| 17 | <groupId>org.osgi</groupId>
|
| 18 | <artifactId>org.osgi.compendium</artifactId>
|
| 19 | <version>4.1.0</version>
|
| 20 | </dependency>
|
| 21 | <dependency>
|
| 22 | <groupId>org.apache.felix</groupId>
|
| 23 | <artifactId>org.apache.felix.shell</artifactId>
|
| 24 | <version>1.4.1</version>
|
| 25 | </dependency>
|
| 26 | <dependency>
|
Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 27 | <groupId>org.apache.felix</groupId>
|
| 28 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
| 29 | <version>3.0.0-SNAPSHOT</version>
|
| 30 | </dependency>
|
| 31 | </dependencies>
|
| 32 |
|
| 33 | <build>
|
| 34 | <plugins>
|
| 35 | <plugin>
|
| 36 | <groupId>org.apache.maven.plugins</groupId>
|
| 37 | <artifactId>maven-compiler-plugin</artifactId>
|
| 38 | <configuration>
|
| 39 | <source>1.5</source>
|
| 40 | <target>1.5</target>
|
| 41 | </configuration>
|
| 42 | </plugin>
|
| 43 |
|
| 44 | <plugin>
|
| 45 | <groupId>org.apache.felix</groupId>
|
| 46 | <artifactId>maven-bundle-plugin</artifactId>
|
| 47 | <version>1.4.0</version>
|
| 48 | <extensions>true</extensions>
|
| 49 | <configuration>
|
| 50 | <instructions>
|
Pierre De Rop | 5dd2424 | 2010-01-15 00:05:25 +0000 | [diff] [blame] | 51 | <Bundle-Name>Apache Felix Dependency Manager Annotation Sample</Bundle-Name>
|
Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 52 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.samples.annotation</Bundle-SymbolicName>
|
| 53 | <Import-Package>*</Import-Package>
|
| 54 | <Private-Package>org.apache.felix.dm.samples.annotation</Private-Package>
|
| 55 | </instructions>
|
| 56 | </configuration>
|
| 57 | </plugin>
|
| 58 |
|
| 59 | <plugin>
|
| 60 | <groupId>org.apache.felix</groupId>
|
| 61 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
| 62 | <version>3.0.0-SNAPSHOT</version>
|
| 63 | <executions>
|
| 64 | <execution>
|
| 65 | <goals>
|
| 66 | <goal>scan</goal>
|
| 67 | </goals>
|
| 68 | </execution>
|
| 69 | </executions>
|
| 70 | </plugin>
|
Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 71 | </plugins>
|
| 72 | </build>
|
| 73 | </project>
|