mirror of https://github.com/apache/activemq.git
108 lines
2.8 KiB
XML
Executable File
108 lines
2.8 KiB
XML
Executable File
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE project>
|
|
<project>
|
|
<pomVersion>3</pomVersion>
|
|
<extend>${basedir}/../etc/project.xml</extend>
|
|
|
|
<name>ActiveMQ :: Web</name>
|
|
<id>activemq-web</id>
|
|
<description>
|
|
Web Connector for REST API and Streamlets support
|
|
</description>
|
|
<shortDescription>
|
|
Web Connector for REST API and Streamlets support
|
|
</shortDescription>
|
|
|
|
<package>org.activemq.web</package>
|
|
<packageGroups>
|
|
<packageGroup>
|
|
<title>Web Connector for REST API and Streamlets support</title>
|
|
<packages>org.activemq.web</packages>
|
|
</packageGroup>
|
|
</packageGroups>
|
|
|
|
|
|
<!-- ============ -->
|
|
<!-- Dependencies -->
|
|
<!-- ============ -->
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>activemq</groupId>
|
|
<artifactId>activemq</artifactId>
|
|
<version>${pom.currentVersion}</version>
|
|
<properties>
|
|
<war.bundle>true</war.bundle>
|
|
<eclipse.dependency>truex</eclipse.dependency>
|
|
</properties>
|
|
</dependency>
|
|
|
|
<dependency><!-- Used for unit tests -->
|
|
<groupId>activemq</groupId>
|
|
<artifactId>activemq-core-test</artifactId>
|
|
<version>${pom.currentVersion}</version>
|
|
</dependency>
|
|
|
|
<!-- for custom XML parsing -->
|
|
<dependency>
|
|
<groupId>xbean</groupId>
|
|
<artifactId>xbean-spring</artifactId>
|
|
<version>${xbean_spring_version}</version>
|
|
<url>http://www.gbean.org</url>
|
|
<properties>
|
|
<war.bundle>true</war.bundle>
|
|
</properties>
|
|
</dependency>
|
|
|
|
<!-- For Spring servlet -->
|
|
<dependency>
|
|
<id>springframework</id>
|
|
<artifactId>spring</artifactId>
|
|
<version>${spring_version}</version>
|
|
<url>http://www.springframework.org</url>
|
|
<properties>
|
|
<war.bundle>true</war.bundle>
|
|
</properties>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>activeio</groupId>
|
|
<artifactId>activeio</artifactId>
|
|
<version>${activeio_version}</version>
|
|
</dependency>
|
|
|
|
<!-- optional used for in-web container testing -->
|
|
<dependency>
|
|
<groupId>geronimo-spec</groupId>
|
|
<artifactId>geronimo-spec-jsp</artifactId>
|
|
<version>${geronimo_spec_jsp_version}</version>
|
|
<properties>
|
|
<war.bundle>false</war.bundle>
|
|
<!-- <eclipse.dependency>true</eclipse.dependency> -->
|
|
</properties>
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- web container -->
|
|
<dependency>
|
|
<groupId>jetty</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet_api_version}</version>
|
|
<properties>
|
|
<war.bundle>false</war.bundle>
|
|
</properties>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
<version>${jetty_version}</version>
|
|
<properties>
|
|
<war.bundle>true</war.bundle>
|
|
</properties>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|