blob: 7346a40b1d1553b4afbaf32e1ceb9a8334d77dfe [file] [log] [blame]
Clement Escoffier6283b132009-06-21 09:33:09 +00001<project>
2 <modelVersion>4.0.0</modelVersion>
3 <packaging>bundle</packaging>
4 <groupId>org.apache.felix</groupId>
Clement Escoffier36940f92009-07-07 07:22:28 +00005 <artifactId>org.apache.felix.ipojo.handler.transaction
6 </artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00007 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier6283b132009-06-21 09:33:09 +00008 <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 Escoffier36940f92009-07-07 07:22:28 +000019 <Bundle-SymbolicName>${pom.artifactId}
20 </Bundle-SymbolicName>
21 <Private-Package>org.apache.felix.ipojo.transaction
22 </Private-Package>
Clement Escoffier6283b132009-06-21 09:33:09 +000023 <Import-Package>*</Import-Package>
24 </instructions>
25 </configuration>
26 </plugin>
27 <plugin>
Clement Escoffier36940f92009-07-07 07:22:28 +000028 <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 Escoffier6283b132009-06-21 09:33:09 +000036 </execution>
37 </executions>
38 </plugin>
39 <plugin>
Clement Escoffier36940f92009-07-07 07:22:28 +000040 <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 Escoffier6283b132009-06-21 09:33:09 +000075 </plugins>
76 </build>
77
78 <dependencies>
Clement Escoffier36940f92009-07-07 07:22:28 +000079 <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 Escoffier6283b132009-06-21 09:33:09 +000096 </dependencies>
97</project>