mirror of https://github.com/apache/activemq.git
62 lines
1.6 KiB
XML
62 lines
1.6 KiB
XML
|
<project>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.apache.activeio</groupId>
|
||
|
<artifactId>activeio-project</artifactId>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
<version>3.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>activeio-oneport-jetty</artifactId>
|
||
|
<name>ActiveIO :: Openport :: OpenORB</name>
|
||
|
<description>A Openport OpenORB adapter</description>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Required Dependencies -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.activeio</groupId>
|
||
|
<artifactId>activeio-core</artifactId>
|
||
|
<version>${version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.activeio</groupId>
|
||
|
<artifactId>activeio-core</artifactId>
|
||
|
<version>${version}</version>
|
||
|
<type>test-jar</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>backport-util-concurrent</groupId>
|
||
|
<artifactId>backport-util-concurrent</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- For Jetty integration -->
|
||
|
<dependency>
|
||
|
<groupId>jetty</groupId>
|
||
|
<artifactId>org.mortbay.jetty</artifactId>
|
||
|
<version>5.1.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>geronimo-spec</groupId>
|
||
|
<artifactId>geronimo-spec-j2ee</artifactId>
|
||
|
<version>1.4-rc4</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Unit Test Dependencies -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|