Author: clement
Date: Sun Sep 12 14:27:07 2010
New Revision: 996318
URL: http://svn.apache.org/viewvc?rev=996318&view=rev
Log:
change the dependency on the transaction API.
Modified:
felix/trunk/ipojo/handler/transaction/pom.xml
Modified: felix/trunk/ipojo/handler/transaction/pom.xml
URL:
http://svn.apache.org/viewvc/felix/trunk/ipojo/handler/transaction/pom.xml?rev=996318&r1=996317&r2=996318&view=diff
==============================================================================
--- felix/trunk/ipojo/handler/transaction/pom.xml (original)
+++ felix/trunk/ipojo/handler/transaction/pom.xml Sun Sep 12 14:27:07 2010
@@ -1,4 +1,28 @@
-<project>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>felix-parent</artifactId>
+ <version>1.2.1</version>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<groupId>org.apache.felix</groupId>
@@ -16,11 +40,9 @@
<extensions>true</extensions>
<configuration>
<instructions>
- <Bundle-SymbolicName>${project.artifactId}
- </Bundle-SymbolicName>
- <Private-Package>org.apache.felix.ipojo.transaction
- </Private-Package>
- <Import-Package>*</Import-Package>
+ <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+
<Private-Package>org.apache.felix.ipojo.transaction</Private-Package>
+ <Import-Package>javax.transaction;version=1.1, *</Import-Package>
</instructions>
</configuration>
</plugin>
@@ -62,14 +84,13 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin
- </artifactId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<enableRulesSummary>false</enableRulesSummary>
<violationSeverity>warning</violationSeverity>
<configLocation>
http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
- </configLocation>
+ </configLocation>
</configuration>
</plugin>
</plugins>
@@ -83,15 +104,13 @@
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.ipojo.metadata
- </artifactId>
+ <artifactId>org.apache.felix.ipojo.metadata</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
- <groupId>org.apache.felix</groupId>
- <artifactId>org.apache.felix.transaction
- </artifactId>
- <version>0.9.0-SNAPSHOT</version>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-jta</artifactId>
+ <version>1.0-M1</version>
</dependency>
</dependencies>
</project>