blob: a994e458cd727025b861b1ed0278762c45d23ce9 [file] [log] [blame]
Clement Escoffier2af0ecc2010-09-12 14:27:07 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
24 <version>1.2.1</version>
25 </parent>
Clement Escoffier6283b132009-06-21 09:33:09 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <groupId>org.apache.felix</groupId>
Clement Escoffier36940f92009-07-07 07:22:28 +000029 <artifactId>org.apache.felix.ipojo.handler.transaction
30 </artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000031 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier6283b132009-06-21 09:33:09 +000032 <name>Apache Felix iPOJO Transaction Handler</name>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
39 <version>1.4.3</version>
40 <extensions>true</extensions>
41 <configuration>
42 <instructions>
Clement Escoffier2af0ecc2010-09-12 14:27:07 +000043 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
44 <Private-Package>org.apache.felix.ipojo.transaction</Private-Package>
45 <Import-Package>javax.transaction;version=1.1, *</Import-Package>
Clement Escoffier6283b132009-06-21 09:33:09 +000046 </instructions>
47 </configuration>
48 </plugin>
49 <plugin>
Clement Escoffier36940f92009-07-07 07:22:28 +000050 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +000052 <version>${project.version}</version>
Clement Escoffier36940f92009-07-07 07:22:28 +000053 <executions>
54 <execution>
55 <goals>
56 <goal>ipojo-bundle</goal>
57 </goals>
Clement Escoffier6283b132009-06-21 09:33:09 +000058 </execution>
59 </executions>
60 </plugin>
61 <plugin>
Clement Escoffier36940f92009-07-07 07:22:28 +000062 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-compiler-plugin</artifactId>
64 <configuration>
65 <source>1.5</source>
66 <target>1.5</target>
67 </configuration>
68 </plugin>
69 <plugin>
70 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>rat-maven-plugin</artifactId>
72 <configuration>
73 <excludeSubProjects>false</excludeSubProjects>
74 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
75 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
76 <excludes>
77 <param>doc/**/*</param>
78 <param>maven-eclipse.xml</param>
79 <param>.checkstyle</param>
80 <param>.externalToolBuilders/*</param>
81 <param>LICENSE.asm</param>
82 </excludes>
83 </configuration>
84 </plugin>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
Clement Escoffier2af0ecc2010-09-12 14:27:07 +000087 <artifactId>maven-checkstyle-plugin</artifactId>
Clement Escoffier36940f92009-07-07 07:22:28 +000088 <configuration>
89 <enableRulesSummary>false</enableRulesSummary>
90 <violationSeverity>warning</violationSeverity>
91 <configLocation>
92 http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
Clement Escoffier2af0ecc2010-09-12 14:27:07 +000093 </configLocation>
Clement Escoffier36940f92009-07-07 07:22:28 +000094 </configuration>
95 </plugin>
Clement Escoffier6283b132009-06-21 09:33:09 +000096 </plugins>
97 </build>
98
99 <dependencies>
Clement Escoffier36940f92009-07-07 07:22:28 +0000100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +0000103 <version>${project.version}</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000104 </dependency>
105 <dependency>
106 <groupId>org.apache.felix</groupId>
Clement Escoffier2af0ecc2010-09-12 14:27:07 +0000107 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier9e4e85a2010-04-12 06:27:58 +0000108 <version>1.4.0</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000109 </dependency>
110 <dependency>
Clement Escoffier2af0ecc2010-09-12 14:27:07 +0000111 <groupId>geronimo-spec</groupId>
112 <artifactId>geronimo-spec-jta</artifactId>
113 <version>1.0-M1</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000114 </dependency>
Clement Escoffier6283b132009-06-21 09:33:09 +0000115 </dependencies>
116</project>