Clement Escoffier | 91c889c | 2009-11-24 18:54:32 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | 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 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>org.apache.felix.ipojo.test.helpers</artifactId> |
| 6 | <packaging>bundle</packaging> |
| 7 | <version>1.5.0-SNAPSHOT</version> |
| 8 | <name>iPOJO Test Helpers</name> |
| 9 | |
| 10 | <dependencies> |
| 11 | <dependency> |
| 12 | <groupId>org.apache.felix</groupId> |
| 13 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 14 | <version>${pom.version}</version> |
| 15 | </dependency> |
| 16 | <dependency> |
| 17 | <groupId>org.osgi</groupId> |
| 18 | <artifactId>org.osgi.core</artifactId> |
| 19 | <version>4.0.0</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>junit</groupId> |
| 23 | <artifactId>junit</artifactId> |
| 24 | <version>4.7</version> |
| 25 | <type>jar</type> |
| 26 | <scope>compile</scope> |
| 27 | </dependency> |
| 28 | </dependencies> |
| 29 | |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-compiler-plugin</artifactId> |
| 35 | <configuration> |
| 36 | <source>1.5</source> |
| 37 | <target>1.5</target> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | |
| 41 | <plugin> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>maven-bundle-plugin</artifactId> |
| 44 | <extensions>true</extensions> |
| 45 | <configuration> |
| 46 | <instructions> |
| 47 | <Export-Package>org.apache.felix.ipojo.test.helpers |
| 48 | </Export-Package> |
| 49 | </instructions> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | |
| 53 | </plugins> |
| 54 | </build> |
| 55 | |
| 56 | |
| 57 | |
| 58 | </project> |