Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 5 | <groupId>ipojo.tests</groupId>
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 6 | <version>1.5.0-SNAPSHOT</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 7 | <modelVersion>4.0.0</modelVersion>
|
| 8 | <packaging>bundle</packaging>
|
| 9 | <name>iPOJO Event Admin Handler Test Suite</name>
|
| 10 | <artifactId>tests.eventadmin.handler</artifactId>
|
| 11 | <dependencies>
|
| 12 | <dependency>
|
| 13 | <groupId>org.apache.felix</groupId>
|
| 14 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 16 | </dependency>
|
| 17 | <dependency>
|
| 18 | <groupId>org.apache.felix</groupId>
|
| 19 | <artifactId>org.osgi.core</artifactId>
|
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 20 | <version>1.0.1</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 21 | </dependency>
|
| 22 | <dependency>
|
| 23 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 25 | <version>${pom.version}</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 26 | </dependency>
|
| 27 | <dependency>
|
| 28 | <groupId>junit</groupId>
|
| 29 | <artifactId>junit</artifactId>
|
| 30 | <version>3.8.1</version>
|
| 31 | </dependency>
|
| 32 | <dependency>
|
Clement Escoffier | 18bfd02 | 2008-12-01 19:42:13 +0000 | [diff] [blame] | 33 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 34 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
|
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 35 | <version>1.1.0-SNAPSHOT</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 36 | </dependency>
|
| 37 | </dependencies>
|
| 38 | <build>
|
| 39 | <plugins>
|
| 40 | <plugin>
|
| 41 | <groupId>org.apache.felix</groupId>
|
| 42 | <artifactId>maven-bundle-plugin</artifactId>
|
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 43 | <version>1.4.3</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 44 | <extensions>true</extensions>
|
| 45 | <configuration>
|
| 46 | <instructions>
|
| 47 | <Private-Package>org.apache.felix.ipojo.test.*
|
| 48 | </Private-Package>
|
| 49 | <Test-Suite>
|
| 50 | org.apache.felix.ipojo.test.EahTestSuite
|
| 51 | </Test-Suite>
|
| 52 | </instructions>
|
| 53 | </configuration>
|
| 54 | </plugin>
|
| 55 | <plugin>
|
| 56 | <groupId>org.apache.felix</groupId>
|
| 57 | <artifactId>maven-ipojo-plugin</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 58 | <version>${pom.version}</version>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 59 | <executions>
|
| 60 | <execution>
|
| 61 | <goals>
|
| 62 | <goal>ipojo-bundle</goal>
|
| 63 | </goals>
|
| 64 | <configuration>
|
| 65 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 66 | </configuration>
|
| 67 | </execution>
|
| 68 | </executions>
|
| 69 | </plugin>
|
| 70 | </plugins>
|
| 71 | </build>
|
| 72 | </project>
|