Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <packaging>bundle</packaging> |
| 4 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>org.apache.felix.ipojo.handler.transaction</artifactId> |
| 6 | <version>1.3.0-SNAPSHOT</version> |
| 7 | <name>Apache Felix iPOJO Transaction Handler</name> |
| 8 | |
| 9 | <build> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <groupId>org.apache.felix</groupId> |
| 13 | <artifactId>maven-bundle-plugin</artifactId> |
| 14 | <version>1.4.3</version> |
| 15 | <extensions>true</extensions> |
| 16 | <configuration> |
| 17 | <instructions> |
| 18 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 19 | <Private-Package>org.apache.felix.ipojo.transaction</Private-Package> |
| 20 | <Import-Package>*</Import-Package> |
| 21 | </instructions> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.felix</groupId> |
| 26 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 27 | <version>${pom.version}</version> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 28 | <executions> |
| 29 | <execution> |
| 30 | <goals> |
| 31 | <goal>ipojo-bundle</goal> |
| 32 | </goals> |
| 33 | </execution> |
| 34 | </executions> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-compiler-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <source>1.5</source> |
| 41 | <target>1.5</target> |
| 42 | </configuration> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 51 | <version>${pom.version}</version> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 56 | <version>${pom.version}</version> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.transaction</artifactId> |
| 61 | <version>0.9.0-SNAPSHOT</version> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | </project> |