Download jboss-transaction-api_1.2_spec-1.0.0.alpha3.jar file

Introduction

You can download jboss-transaction-api_1.2_spec-1.0.0.alpha3.jar in this page.

License

Common Development and Distribution License

Type List

jboss-transaction-api_1.2_spec-1.0.0.alpha3.jar file has the following types.

META-INF.maven.org.jboss.spec.javax.transaction.jboss-transaction-api_1.2_spec.pom.properties
META-INF.maven.org.jboss.spec.javax.transaction.jboss-transaction-api_1.2_spec.pom.xml
META-INF/INDEX.LIST
META-INF/LICENSE.txt
META-INF/MANIFEST.MF
META-INF/README
javax.transaction.HeuristicCommitException.class
javax.transaction.HeuristicMixedException.class
javax.transaction.HeuristicRollbackException.class
javax.transaction.InvalidTransactionException.class
javax.transaction.NotSupportedException.class
javax.transaction.RollbackException.class
javax.transaction.Status.class
javax.transaction.Synchronization.class
javax.transaction.SystemException.class
javax.transaction.Transaction.class
javax.transaction.TransactionManager.class
javax.transaction.TransactionRequiredException.class
javax.transaction.TransactionRolledbackException.class
javax.transaction.TransactionScoped.class
javax.transaction.TransactionSynchronizationRegistry.class
javax.transaction.Transactional.class
javax.transaction.TransactionalException.class
javax.transaction.UserTransaction.class
javax.transaction.xa.XAException.class
javax.transaction.xa.XAResource.class
javax.transaction.xa.Xid.class

Pom

jboss-transaction-api_1.2_spec-1.0.0.alpha3.pom file content.

<?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>10</version>
  </parent>

  <groupId>org.jboss.spec.javax.transaction</groupId>
  <artifactId>jboss-transaction-api_1.2_spec</artifactId>
  <version>1.0.0.Alpha3</version>
  <packaging>jar</packaging>

  <name>Java Transaction API</name>
  <description>The Java Transaction 1.2 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>
    <tag>jboss-transaction-api_1.2_spec-1.0.0.Alpha3</tag>
  </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.2</Specification-Version>
            <!-- Set the package version to match the spec version -->
            <Export-Package>
              javax.transaction*;version=1.2
            </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>

  <dependencies>
    <dependency>
      <groupId>javax.enterprise</groupId>
      <artifactId>cdi-api</artifactId>
      <version>1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.spec.javax.interceptor</groupId>
      <artifactId>jboss-interceptors-api_1.2_spec</artifactId>
      <version>1.0.0.Alpha3</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.jboss.spec.javax.transaction</groupId>
   <artifactId>jboss-transaction-api_1.2_spec</artifactId>
   <version>1.0.0.alpha3</version>
</dependency>

Download

If you think the following jboss-transaction-api_1.2_spec-1.0.0.alpha3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jboss-transaction-api_1.2_spec-1.0.0.alpha3.jar file




PreviousNext

Related