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> |
Clement Escoffier | 36940f9 | 2009-07-07 07:22:28 +0000 | [diff] [blame] | 5 | <artifactId>org.apache.felix.ipojo.handler.transaction |
| 6 | </artifactId> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 7 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 8 | <name>Apache Felix iPOJO Transaction Handler</name> |
| 9 | |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <groupId>org.apache.felix</groupId> |
| 14 | <artifactId>maven-bundle-plugin</artifactId> |
| 15 | <version>1.4.3</version> |
| 16 | <extensions>true</extensions> |
| 17 | <configuration> |
| 18 | <instructions> |
Clement Escoffier | 36940f9 | 2009-07-07 07:22:28 +0000 | [diff] [blame] | 19 | <Bundle-SymbolicName>${pom.artifactId} |
| 20 | </Bundle-SymbolicName> |
| 21 | <Private-Package>org.apache.felix.ipojo.transaction |
| 22 | </Private-Package> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 23 | <Import-Package>*</Import-Package> |
| 24 | </instructions> |
| 25 | </configuration> |
| 26 | </plugin> |
| 27 | <plugin> |
Clement Escoffier | 36940f9 | 2009-07-07 07:22:28 +0000 | [diff] [blame] | 28 | <groupId>org.apache.felix</groupId> |
| 29 | <artifactId>maven-ipojo-plugin</artifactId> |
| 30 | <version>${pom.version}</version> |
| 31 | <executions> |
| 32 | <execution> |
| 33 | <goals> |
| 34 | <goal>ipojo-bundle</goal> |
| 35 | </goals> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 36 | </execution> |
| 37 | </executions> |
| 38 | </plugin> |
| 39 | <plugin> |
Clement Escoffier | 36940f9 | 2009-07-07 07:22:28 +0000 | [diff] [blame] | 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-compiler-plugin</artifactId> |
| 42 | <configuration> |
| 43 | <source>1.5</source> |
| 44 | <target>1.5</target> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>org.codehaus.mojo</groupId> |
| 49 | <artifactId>rat-maven-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <excludeSubProjects>false</excludeSubProjects> |
| 52 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 53 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 54 | <excludes> |
| 55 | <param>doc/**/*</param> |
| 56 | <param>maven-eclipse.xml</param> |
| 57 | <param>.checkstyle</param> |
| 58 | <param>.externalToolBuilders/*</param> |
| 59 | <param>LICENSE.asm</param> |
| 60 | </excludes> |
| 61 | </configuration> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-checkstyle-plugin |
| 66 | </artifactId> |
| 67 | <configuration> |
| 68 | <enableRulesSummary>false</enableRulesSummary> |
| 69 | <violationSeverity>warning</violationSeverity> |
| 70 | <configLocation> |
| 71 | http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml |
| 72 | </configLocation> |
| 73 | </configuration> |
| 74 | </plugin> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 75 | </plugins> |
| 76 | </build> |
| 77 | |
| 78 | <dependencies> |
Clement Escoffier | 36940f9 | 2009-07-07 07:22:28 +0000 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>org.apache.felix</groupId> |
| 81 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 82 | <version>${pom.version}</version> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.apache.felix</groupId> |
| 86 | <artifactId>org.apache.felix.ipojo.metadata |
| 87 | </artifactId> |
| 88 | <version>${pom.version}</version> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.apache.felix</groupId> |
| 92 | <artifactId>org.apache.felix.transaction |
| 93 | </artifactId> |
| 94 | <version>0.9.0-SNAPSHOT</version> |
| 95 | </dependency> |
Clement Escoffier | 6283b13 | 2009-06-21 09:33:09 +0000 | [diff] [blame] | 96 | </dependencies> |
| 97 | </project> |