Clement Escoffier | a39317c | 2008-07-07 16:46:09 +0000 | [diff] [blame] | 1 | <project>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 2 | <groupId>ipojo.tests</groupId>
|
Clement Escoffier | a39317c | 2008-07-07 16:46:09 +0000 | [diff] [blame] | 3 | <version>0.9.0-SNAPSHOT</version>
|
| 4 | <modelVersion>4.0.0</modelVersion>
|
| 5 | <packaging>bundle</packaging>
|
| 6 | <name>iPOJO White Board Pattern Handler Test Suite</name>
|
Clement Escoffier | eb15bc6 | 2008-07-24 10:06:34 +0000 | [diff] [blame] | 7 | <artifactId>tests.whiteboard</artifactId>
|
Clement Escoffier | a39317c | 2008-07-07 16:46:09 +0000 | [diff] [blame] | 8 | <dependencies>
|
| 9 | <dependency>
|
| 10 | <groupId>org.apache.felix</groupId>
|
| 11 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 12 | <version>0.9.0-SNAPSHOT</version>
|
| 13 | </dependency>
|
| 14 | <dependency>
|
| 15 | <groupId>org.apache.felix</groupId>
|
| 16 | <artifactId>org.osgi.core</artifactId>
|
| 17 | <version>1.0.0</version>
|
| 18 | </dependency>
|
| 19 | <dependency>
|
| 20 | <groupId>junit</groupId>
|
| 21 | <artifactId>junit</artifactId>
|
| 22 | <version>3.8.1</version>
|
| 23 | </dependency>
|
| 24 | <dependency>
|
| 25 | <groupId>ipojo.examples</groupId>
|
| 26 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
|
| 27 | <version>0.9.0-SNAPSHOT</version>
|
| 28 | </dependency>
|
| 29 | </dependencies>
|
| 30 | <build>
|
| 31 | <plugins>
|
| 32 | <plugin>
|
| 33 | <groupId>org.apache.felix</groupId>
|
| 34 | <artifactId>maven-bundle-plugin</artifactId>
|
| 35 | <version>1.4.0</version>
|
| 36 | <extensions>true</extensions>
|
| 37 | <configuration>
|
| 38 | <instructions>
|
| 39 | <Private-Package>org.apache.felix.ipojo.test, org.apache.felix.ipojo.test.scenarios.util</Private-Package>
|
| 40 | <Test-Suite>org.apache.felix.ipojo.test.WbpTests</Test-Suite>
|
| 41 | </instructions>
|
| 42 | </configuration>
|
| 43 | </plugin>
|
| 44 | <plugin>
|
| 45 | <groupId>org.apache.felix</groupId>
|
| 46 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 47 | <version>0.9.0-SNAPSHOT</version>
|
| 48 | <executions>
|
| 49 | <execution>
|
| 50 | <goals>
|
| 51 | <goal>ipojo-bundle</goal>
|
| 52 | </goals>
|
| 53 | <configuration>
|
| 54 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 55 | </configuration>
|
| 56 | </execution>
|
| 57 | </executions>
|
| 58 | </plugin>
|
| 59 | </plugins>
|
| 60 | </build>
|
| 61 | </project>
|