blob: 9c099882388b811121e0d3a48324818875d470f8 [file] [log] [blame]
Clement Escoffier0ba87882013-03-12 09:12:28 +00001<!--
Clement Escoffiered4ca022013-03-13 15:27:20 +00002 ~ 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 -->
Clement Escoffier0ba87882013-03-12 09:12:28 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Clement Escoffiered4ca022013-03-13 15:27:20 +000020 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
Clement Escoffier0ba87882013-03-12 09:12:28 +000022 <groupId>org.apache.felix</groupId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <artifactId>felix-parent</artifactId>
24 <version>2.1</version>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <artifactId>org.apache.felix.ipojo.handler.transaction
29 </artifactId>
30 <version>1.5.0-SNAPSHOT</version>
31 <name>Apache Felix iPOJO Transaction Handler</name>
Clement Escoffier0ba87882013-03-12 09:12:28 +000032
Clement Escoffiered4ca022013-03-13 15:27:20 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
38 <version>1.4.3</version>
39 <extensions>true</extensions>
40 <configuration>
41 <instructions>
42 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
43 <Private-Package>org.apache.felix.ipojo.transaction</Private-Package>
44 <Import-Package>javax.transaction;version=1.1, *</Import-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-ipojo-plugin</artifactId>
51 <version>1.8.4</version>
52 <executions>
53 <execution>
54 <goals>
55 <goal>ipojo-bundle</goal>
56 </goals>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-compiler-plugin</artifactId>
63 <configuration>
64 <source>1.5</source>
65 <target>1.5</target>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-checkstyle-plugin</artifactId>
71 <configuration>
72 <enableRulesSummary>false</enableRulesSummary>
73 <violationSeverity>warning</violationSeverity>
74 <configLocation>
75 http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
76 </configLocation>
77 </configuration>
78 </plugin>
79 </plugins>
80 </build>
81
82 <dependencies>
83 <dependency>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>org.apache.felix.ipojo</artifactId>
86 <version>1.9.0-SNAPSHOT</version>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
91 <version>1.4.0</version>
92 </dependency>
93 <dependency>
94 <groupId>geronimo-spec</groupId>
95 <artifactId>geronimo-spec-jta</artifactId>
96 <version>1.0-M1</version>
97 </dependency>
98 </dependencies>
Clement Escoffier0ba87882013-03-12 09:12:28 +000099</project>