This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.fragment.transaction-1.0.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fragment-transaction.git
commit 32f0570d14280867077c3d22fbfaf983ebe9a729 Author: Felix Meschberger <[email protected]> AuthorDate: Thu Jun 23 14:45:05 2011 +0000 SLING-2109 Provide System Bundle Extension Fragments for XML and JTA APIs git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-transaction@1138907 13f79535-47bb-0310-9956-ffa450edef68 --- README.txt | 27 +++++++++++++++++++++ pom.xml | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+) diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..19bfac8 --- /dev/null +++ b/README.txt @@ -0,0 +1,27 @@ +Apache Sling System Bundle Extension: Java Transaction API + +Adds the javax.transaction and javax.transaction.xa packages to the system +bundle exports. + +Getting Started +=============== + +This component uses a Maven 2 (http://maven.apache.org/) build +environment. It requires a Java 5 JDK (or higher) and Maven (http://maven.apache.org/) +2.2.1 or later. We recommend to use the latest Maven version. + +If you have Maven 2 installed, you can compile and +package the jar using the following command: + + mvn package + +See the Maven 2 documentation for other build features. + +The latest source code for this component is available in the +Subversion (http://subversion.tigris.org/) source repository of +the Apache Software Foundation. If you have Subversion installed, +you can checkout the latest source using the following command: + + svn checkout https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/framework-extension-transaction + +See the Subversion documentation for other source control features. diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0ca9a2d --- /dev/null +++ b/pom.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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"> + + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.sling</groupId> + <artifactId>sling</artifactId> + <version>10</version> + <relativePath>../../parent/pom.xml</relativePath> + </parent> + + <artifactId>org.apache.sling.fragment.transaction</artifactId> + <version>0.0.1-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Apache Sling System Bundle Extension: Java Transaction API</name> + <description> + Adds the javax.transaction and javax.transaction.xa + packages to the system bundle exports. + </description> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <executions> + <execution> + <id>bundle-manifest</id> + <phase>process-classes</phase> + <goals> + <goal>manifest</goal> + </goals> + </execution> + </executions> + <configuration> + <instructions> + <Fragment-Host> + system.bundle;extension:=framework + </Fragment-Host> + </instructions> + </configuration> + </plugin> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <forceCreation>true</forceCreation> + <archive> + <manifestFile> + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + </manifestFile> + <manifestEntries> + <Export-Package> + javax.transaction, + javax.transaction.xa + </Export-Package> + </manifestEntries> + </archive> + </configuration> + </plugin> + </plugins> + </build> +</project> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
