Show
hide
<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-assemblies</artifactId>
<version>2.1.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.ow2.jotm</groupId>
<artifactId>ow2-jotm-dist</artifactId>
<packaging>pom</packaging>
<name>JOTM :: Assemblies :: Dist</name>
<dependencies>
<dependency>
<groupId>org.ow2.carol</groupId>
<artifactId>carol</artifactId>
<exclusions>
<exclusion>
<groupId>org.ow2.cmi</groupId>
<artifactId>cmi-ejb2</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId />
<artifactId />
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ow2.carol</groupId>
<artifactId>carol-interceptors</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.carol</groupId>
<artifactId>carol-iiop-delegate</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-standalone</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-jms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-datasource</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.objectweb.joram</groupId>
<artifactId>joram-mom</artifactId>
</dependency>
<dependency>
<groupId>org.objectweb.joram</groupId>
<artifactId>joram-shared</artifactId>
</dependency>
<dependency>
<groupId>org.objectweb.joram</groupId>
<artifactId>joram-client</artifactId>
</dependency>
<dependency>
<groupId>org.objectweb.joram</groupId>
<artifactId>jcup</artifactId>
<version>4.3.28</version>
</dependency>
<dependency>
<groupId>org.ow2.spec.ee</groupId>
<artifactId>ow2-connector-1.5-spec</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.spec.ee</groupId>
<artifactId>ow2-jta-1.1-spec</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-corba_3.0_spec</artifactId>
</dependency>
<dependency>
<groupId>org.objectweb.monolog</groupId>
<artifactId>monolog</artifactId>
<version>2.1.9</version>
</dependency>
<dependency>
<groupId>com.experlog</groupId>
<artifactId>xapool</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-1</version>
<executions>
<execution>
<id>generate-dist-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/ow2-jotm.xml</descriptor>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|