Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?>
|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 | <parent>
|
| 5 | <groupId>org.apache.felix</groupId>
|
| 6 | <artifactId>felix-parent</artifactId>
|
| 7 | <version>1.2.0</version>
|
| 8 | <relativePath>../../pom/pom.xml</relativePath>
|
| 9 | </parent>
|
| 10 | <properties>
|
| 11 | <osgi.version>4.2.0</osgi.version>
|
| 12 | </properties>
|
| 13 | <name>Apache Felix Dependency Manager Annotation Samples</name>
|
| 14 | <artifactId>org.apache.felix.dependencymanager.samples.annotation</artifactId>
|
Pierre De Rop | 7302fa6 | 2014-11-14 11:55:35 +0000 | [diff] [blame] | 15 | <version>3.2.1-SNAPSHOT</version>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 16 | <packaging>bundle</packaging>
|
| 17 | <dependencies>
|
| 18 | <dependency>
|
| 19 | <groupId>org.osgi</groupId>
|
| 20 | <artifactId>org.osgi.core</artifactId>
|
| 21 | <version>${osgi.version}</version>
|
| 22 | </dependency>
|
| 23 | <dependency>
|
| 24 | <groupId>org.osgi</groupId>
|
| 25 | <artifactId>org.osgi.compendium</artifactId>
|
| 26 | <version>${osgi.version}</version>
|
| 27 | </dependency>
|
| 28 | <dependency>
|
Pierre De Rop | c86a483 | 2013-03-27 11:09:05 +0000 | [diff] [blame] | 29 | <groupId>${project.groupId}</groupId>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
Pierre De Rop | 7302fa6 | 2014-11-14 11:55:35 +0000 | [diff] [blame] | 31 | <version>3.2.0</version>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 32 | </dependency>
|
| 33 | <dependency>
|
Pierre De Rop | c86a483 | 2013-03-27 11:09:05 +0000 | [diff] [blame] | 34 | <groupId>${project.groupId}</groupId>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 35 | <artifactId>org.apache.felix.gogo.runtime</artifactId>
|
| 36 | <version>0.6.0</version>
|
| 37 | </dependency>
|
| 38 | </dependencies>
|
| 39 | <build>
|
| 40 | <plugins>
|
| 41 | <plugin>
|
| 42 | <groupId>org.apache.maven.plugins</groupId>
|
| 43 | <artifactId>maven-compiler-plugin</artifactId>
|
| 44 | <configuration>
|
| 45 | <source>1.5</source>
|
| 46 | <target>1.5</target>
|
| 47 | </configuration>
|
| 48 | </plugin>
|
| 49 | <plugin>
|
| 50 | <groupId>org.apache.felix</groupId>
|
| 51 | <artifactId>maven-bundle-plugin</artifactId>
|
Pierre De Rop | 151c1d8 | 2013-01-23 12:56:46 +0000 | [diff] [blame] | 52 | <version>2.3.7</version>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 53 | <extensions>true</extensions>
|
| 54 | <configuration>
|
| 55 | <instructions>
|
| 56 | <Bundle-Name>Apache Felix Dependency Manager Annotation Sample</Bundle-Name>
|
| 57 | <Bundle-SymbolicName>org.apache.felix.dependencymanager.samples.annotation</Bundle-SymbolicName>
|
| 58 | <Import-Package>org.apache.felix.service.command;status=provisional,*</Import-Package>
|
| 59 | <Private-Package>org.apache.felix.dm.samples.annotation</Private-Package>
|
| 60 | </instructions>
|
| 61 | </configuration>
|
| 62 | </plugin>
|
| 63 | <plugin>
|
| 64 | <groupId>org.apache.felix</groupId>
|
| 65 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
|
Pierre De Rop | 7302fa6 | 2014-11-14 11:55:35 +0000 | [diff] [blame] | 66 | <version>3.2.0</version>
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 67 | <executions>
|
| 68 | <execution>
|
| 69 | <goals>
|
| 70 | <goal>scan</goal>
|
| 71 | </goals>
|
| 72 | <configuration>
|
Pierre De Rop | c86a483 | 2013-03-27 11:09:05 +0000 | [diff] [blame] | 73 | <log>debug</log>
|
Pierre De Rop | 151c1d8 | 2013-01-23 12:56:46 +0000 | [diff] [blame] | 74 | <!-- generated-output-dir>.</generated-output-dir>-->
|
Marcel Offermans | 89c60cc | 2011-04-27 10:14:59 +0000 | [diff] [blame] | 75 | </configuration>
|
| 76 | </execution>
|
| 77 | </executions>
|
| 78 | </plugin>
|
| 79 | </plugins>
|
| 80 | </build>
|
Pierre De Rop | 952a61c | 2010-01-14 21:58:44 +0000 | [diff] [blame] | 81 | </project>
|