Pierre De Rop | 2238368 | 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>
|
| 12 | <groupId>org.apache.felix</groupId>
|
| 13 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
| 14 | <version>3.0.0-SNAPSHOT</version>
|
| 15 | </dependency>
|
| 16 | </dependencies>
|
| 17 |
|
| 18 | <build>
|
| 19 | <plugins>
|
| 20 | <plugin>
|
| 21 | <groupId>org.apache.maven.plugins</groupId>
|
| 22 | <artifactId>maven-compiler-plugin</artifactId>
|
| 23 | <configuration>
|
| 24 | <source>1.5</source>
|
| 25 | <target>1.5</target>
|
| 26 | </configuration>
|
| 27 | </plugin>
|
| 28 |
|
| 29 | <plugin>
|
| 30 | <groupId>org.apache.felix</groupId>
|
| 31 | <artifactId>maven-bundle-plugin</artifactId>
|
| 32 | <version>1.4.0</version>
|
| 33 | <extensions>true</extensions>
|
| 34 | <configuration>
|
| 35 | <instructions>
|
| 36 | <Bundle-Name>DM annotation sample</Bundle-Name>
|
| 37 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.samples.annotation</Bundle-SymbolicName>
|
| 38 | <Import-Package>*</Import-Package>
|
| 39 | <Private-Package>org.apache.felix.dm.samples.annotation</Private-Package>
|
| 40 | </instructions>
|
| 41 | </configuration>
|
| 42 | </plugin>
|
| 43 |
|
| 44 | <plugin>
|
| 45 | <groupId>org.apache.felix</groupId>
|
| 46 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
| 47 | <version>3.0.0-SNAPSHOT</version>
|
| 48 | <executions>
|
| 49 | <execution>
|
| 50 | <goals>
|
| 51 | <goal>scan</goal>
|
| 52 | </goals>
|
| 53 | </execution>
|
| 54 | </executions>
|
| 55 | </plugin>
|
| 56 |
|
| 57 | </plugins>
|
| 58 | </build>
|
| 59 | </project>
|