Maven Repository - POM file for JBoss jboss-transaction-api_1.1_spec 1.0.1.Final 1.0.1.Final

Summary

Java Transaction API.

The Java Transaction 1.1 API classes.

Declaration

Here is the list of declaration for jboss-transaction-api_1.1_spec. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jboss.spec.javax.transaction</groupId>
   <artifactId>jboss-transaction-api_1.1_spec</artifactId>
   <version>1.0.1.Final</version>
</dependency>

If you think this Maven repository POM file listing for jboss-transaction-api_1.1_spec is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Common Development and Distribution License
URL: http://repository.jboss.org/licenses/cddl.txtName:GNU General Public License, Version 2 with the Classpath Exception
URL: http://repository.jboss.org/licenses/gpl-2.0-ce.txt.





Depended by

The following table lists the most popular artifacts which are depending on jboss-transaction-api_1.1_spec-1.0.1.Final. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JPA Hibernatehibernate-core 4.2.7.Final
A module of the Hibernate Core project
10
JPA Hibernatehibernate-entitymanager 4.2.8.Final
A module of the Hibernate O/RM project
8
JPA Hibernatehibernate-core 4.2.8.Final
A module of the Hibernate O/RM project
10
JPA Hibernatehibernate-entitymanager 4.2.12.Final
A module of the Hibernate O/RM project
7
JEEironjacamar-spec-api 1.0.11.Final
IronJacamar is an implementation of the Java EE Connector Architecture 1.6 specification
5
JPA Hibernatehibernate-core 4.2.12.Final
A module of the Hibernate O/RM project
14
JPA Hibernatehibernate-core 4.2.14.Final
A module of the Hibernate O/RM project
5
JPA Hibernatehibernate-core 4.2.2.Final
A module of the Hibernate Core project
5

Plugin

The following plugins are used in the jboss-transaction-api_1.1_spec-1.0.1.Final.jar

  1. maven-bundle-plugin
  2. maven-jar-plugin
  3. maven-resources-plugin




Packages

The following packages are defined in the jboss-transaction-api_1.1_spec-1.0.1.Final.jar

javax.transaction
javax.transaction.xa

POM File Source

Here is the content of the POM file.

<?xml version='1.0' encoding='UTF-8'?>
<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.jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>9</version>
  </parent>

  <groupId>org.jboss.spec.javax.transaction</groupId>
  <artifactId>jboss-transaction-api_1.1_spec</artifactId>
  <version>1.0.1.Final</version>
  <packaging>jar</packaging>

  <name>Java Transaction API</name>
  <description>The Java Transaction 1.1 API classes</description>

  <licenses>
    <license>
      <name>Common Development and Distribution License</name>
      <url>http://repository.jboss.org/licenses/cddl.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>GNU General Public License, Version 2 with the Classpath Exception</name>
      <url>http://repository.jboss.org/licenses/gpl-2.0-ce.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:git@github.com:jboss/jboss-transaction-api_spec.git</connection>
    <developerConnection>scm:git:git@github.com:jboss/jboss-transaction-api_spec.git</developerConnection>
    <url>https://github.com/jboss/jboss-transaction-api_spec</url>
  </scm>

  <properties>
    <!-- 
        Don't automatically push the tag when using Maven release plugin.
        The release build needs to be staged and verified before the tag is pushed.
    -->
    <pushChanges>false</pushChanges>
  </properties>

  <build>
    <plugins>
      <!-- Include LICENSE.txt in the META-INF directory -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <executions>
          <execution>
            <id>copy-resources</id>
            <phase>process-resources</phase>
            <goals>
              <goal>copy-resources</goal>
            </goals>
            <configuration>
              <resources>          
                <resource>
                  <directory>${basedir}</directory>
                  <includes>
                    <include>LICENSE.txt</include>
                    <include>README</include>
                  </includes>
                </resource>
              </resources>              
              <outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
            </configuration>            
          </execution>
        </executions>
      </plugin>

      <!-- Generate the OSGi jar Manifest. -->
      <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>
          <archive>
            <manifest>
              <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
            </manifest>
          </archive>
          <instructions>
            <Specification-Title>JSR 907: Java Transaction API (JTA)</Specification-Title>
            <Specification-Vendor>Oracle, Inc.</Specification-Vendor>
            <Specification-Version>1.1</Specification-Version>
            <!-- Set the package version to match the spec version -->
            <Export-Package>
              javax.transaction*;version=1.1
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
      <!-- Add the OSGi Manifest to the main jar -->
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>