Clement Escoffier | dbddbbe | 2007-10-21 08:43:36 +0000 | [diff] [blame] | 1 | <project>
|
| 2 | <modelVersion>4.0.0</modelVersion>
|
| 3 | <packaging>bundle</packaging>
|
| 4 | <name>iPOJO Event Admin Handler</name>
|
| 5 | <groupId>org.apache.felix</groupId>
|
| 6 | <version>0.7.5-SNAPSHOT</version>
|
| 7 | <artifactId>org.apache.felix.ipojo.handler.event</artifactId>
|
| 8 |
|
| 9 | <dependencies>
|
| 10 | <dependency>
|
| 11 | <groupId>org.apache.felix</groupId>
|
| 12 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 13 | <version>0.7.5-SNAPSHOT</version>
|
| 14 | </dependency>
|
| 15 | <dependency>
|
| 16 | <groupId>org.apache.felix</groupId>
|
| 17 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 18 | <version>0.7.5-SNAPSHOT</version>
|
| 19 | </dependency>
|
| 20 | <dependency>
|
| 21 | <groupId>org.apache.felix</groupId>
|
| 22 | <artifactId>org.osgi.core</artifactId>
|
| 23 | <version>1.1.0-SNAPSHOT</version>
|
| 24 | </dependency>
|
| 25 | <dependency>
|
| 26 | <groupId>org.apache.felix</groupId>
|
| 27 | <artifactId>org.osgi.compendium</artifactId>
|
| 28 | <version>0.9.0-SNAPSHOT</version>
|
| 29 | </dependency>
|
| 30 | </dependencies>
|
| 31 |
|
| 32 |
|
| 33 |
|
| 34 | <build>
|
| 35 | <plugins>
|
| 36 | <plugin>
|
| 37 | <groupId>org.apache.felix</groupId>
|
| 38 | <artifactId>maven-bundle-plugin</artifactId>
|
| 39 | <extensions>true</extensions>
|
| 40 | <configuration>
|
| 41 | <instructions>
|
| 42 | <Private-Package>org.apache.felix.ipojo.handler.event</Private-Package>
|
| 43 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 44 | <Bundle-SymbolicName>ipojo.event.admin.handler</Bundle-SymbolicName>
|
| 45 | </instructions>
|
| 46 | </configuration>
|
| 47 | </plugin>
|
| 48 | <plugin>
|
| 49 | <groupId>org.apache.felix</groupId>
|
| 50 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 51 | <version>${pom.version}</version>
|
| 52 | <executions>
|
| 53 | <execution>
|
| 54 | <goals>
|
| 55 | <goal>ipojo-bundle</goal>
|
| 56 | </goals>
|
| 57 | <configuration>
|
| 58 | <metadata>metadata.xml</metadata>
|
| 59 | </configuration>
|
| 60 | </execution>
|
| 61 | </executions>
|
| 62 | </plugin>
|
| 63 | </plugins>
|
| 64 | </build>
|
| 65 | </project>
|