Maven Repository - POM file for JEE Library jotm-core 2.2.3 2.2.3

Summary

JOTM :: Core.

JOTM: Java Open Transaction Manager - Core.

Declaration

Here is the list of declaration for jotm-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.ow2.jotm</groupId>
   <artifactId>jotm-core</artifactId>
   <version>2.2.3</version>
</dependency>

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

Depended by

The following table lists the most popular artifacts which are depending on jotm-core-2.2.3. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Document Databaseneo4j-kernel 1.8.2
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
17
Document Databaseneo4j-kernel 1.8.RC1
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
23
Document Databaseneo4j-kernel 1.9.M05
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
6
Document Databaseneo4j-kernel 1.8.1
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
23
Document Databaseneo4j-kernel 1.9.3
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
5
Document Databaseneo4j-kernel 1.8
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
24
Document Databaseneo4j-kernel 1.8.3
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
19
Document Databaseneo4j-kernel 1.8.M06
Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org.
23




Plugin

The following plugins are used in the jotm-core-2.2.3.jar

  1. util-maven-plugin-antrmic

Packages

The following packages are defined in the jotm-core-2.2.3.jar

org.objectweb.howl.log
org.objectweb.howl.log.util
org.objectweb.howl.log.xa
org.objectweb.jotm

POM File Source

Here is the content of the POM file.

<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.ow2.jotm</groupId>
    <artifactId>jotm</artifactId>
    <version>2.2.3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.ow2.jotm</groupId>
  <artifactId>jotm-core</artifactId>
  <description>JOTM: Java Open Transaction Manager - Core</description>
  <packaging>bundle</packaging>
  <name>JOTM :: Core</name>

  <dependencies>
    <dependency>
      <groupId>org.ow2.spec.ee</groupId>
      <artifactId>ow2-jta-1.1-spec</artifactId>
    </dependency>
    <dependency>
      <groupId>org.ow2.spec.ee</groupId>
      <artifactId>ow2-connector-1.5-spec</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.carol</groupId>
      <artifactId>carol</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.objectweb.howl</groupId>
      <artifactId>howl</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.ow2.util</groupId>
        <artifactId>util-maven-plugin-antrmic</artifactId>
        <version>${ow2-util.version}</version>
        <executions>
          <!-- Generates POA enabled IIOP Stubs/Ties in the following order: -->
          <!-- TODO: generate 2 versions: one with -poa, one without -poa
               and use classifier to choose it -->
          <!-- * ControlImpl
               * TransactionFactoryImpl
               * SubCoordinator -->
          <execution>
            <id>rmic-ControlImpl</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>true</iiop>
              <iiopopts>-always</iiopopts>
              <classname>org.objectweb.jotm.ControlImpl</classname>
              <compilerarg>-poa</compilerarg>
            </configuration>
          </execution>
          <execution>
            <id>rmic-TransactionFactoryImpl</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>true</iiop>
              <iiopopts>-always</iiopopts>
              <classname>org.objectweb.jotm.TransactionFactoryImpl</classname>
              <compilerarg>-poa</compilerarg>
            </configuration>
          </execution>
          <execution>
            <id>rmic-SubCoordinator</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>true</iiop>
              <iiopopts>-always</iiopopts>
              <classname>org.objectweb.jotm.SubCoordinator</classname>
              <compilerarg>-poa</compilerarg>
            </configuration>
          </execution>
          <execution>
            <id>rmic-ControlImpl-jrmp</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>false</iiop>
              <classname>org.objectweb.jotm.ControlImpl</classname>
            </configuration>
          </execution>
          <execution>
            <id>rmic-TransactionFactoryImpl-jrmp</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>false</iiop>
              <classname>org.objectweb.jotm.TransactionFactoryImpl</classname>
            </configuration>
          </execution>
          <execution>
            <id>rmic-SubCoordinator-jrmp</id>
            <goals>
              <goal>rmic</goal>
            </goals>
            <configuration>
              <iiop>false</iiop>
              <classname>org.objectweb.jotm.SubCoordinator</classname>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>