Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 1 | <project>
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion>
|
| 3 | <packaging>bundle</packaging>
|
| 4 | <groupId>ipojo.examples</groupId>
|
| 5 | <artifactId>hello.impl</artifactId>
|
| 6 | <version>1.5.0-SNAPSHOT</version>
|
| 7 | <name>Hello Service Provider</name>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 8 |
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 9 | <pluginRepositories>
|
| 10 | <pluginRepository>
|
| 11 | <id>apache.snapshots</id>
|
| 12 | <name>snapshot plugins</name>
|
| 13 | <url>
|
| 14 | http://people.apache.org/repo/m2-snapshot-repository
|
| 15 | </url>
|
| 16 | <releases>
|
| 17 | <enabled>false</enabled>
|
| 18 | </releases>
|
| 19 | <snapshots>
|
| 20 | <enabled>true</enabled>
|
| 21 | </snapshots>
|
| 22 | </pluginRepository>
|
| 23 | </pluginRepositories>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 24 |
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 25 | <dependencies>
|
| 26 | <dependency>
|
| 27 | <groupId>ipojo.examples</groupId>
|
| 28 | <artifactId>hello.service</artifactId>
|
| 29 | <version>1.5.0-SNAPSHOT</version>
|
| 30 | </dependency>
|
| 31 | </dependencies>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 32 |
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 33 | <build>
|
| 34 | <plugins>
|
| 35 | <plugin>
|
| 36 | <groupId>org.apache.felix</groupId>
|
| 37 | <artifactId>maven-bundle-plugin</artifactId>
|
| 38 | <version>1.4.3</version>
|
| 39 | <extensions>true</extensions>
|
| 40 | <configuration>
|
| 41 | <instructions>
|
| 42 | <Bundle-SymbolicName>
|
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 43 | ${project.artifactId}
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 44 | </Bundle-SymbolicName>
|
| 45 | <Private-Package>
|
| 46 | ipojo.example.hello.impl
|
| 47 | </Private-Package>
|
| 48 | </instructions>
|
| 49 | </configuration>
|
| 50 | </plugin>
|
| 51 | <plugin>
|
| 52 | <groupId>org.apache.felix</groupId>
|
| 53 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 54 | <version>1.5.0-SNAPSHOT</version>
|
| 55 | <executions>
|
| 56 | <execution>
|
| 57 | <goals>
|
| 58 | <goal>ipojo-bundle</goal>
|
| 59 | </goals>
|
| 60 | </execution>
|
| 61 | </executions>
|
| 62 | </plugin>
|
| 63 | </plugins>
|
| 64 | </build>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 65 | </project>
|