2008-04-14 17:32:33 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2008-04-11 19:00:05 +00:00
|
|
|
<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">
|
2006-03-30 01:12:00 +00:00
|
|
|
|
2005-12-22 03:43:57 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2006-07-26 06:07:11 +00:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-15 23:33:05 +00:00
|
|
|
<artifactId>activemq-parent</artifactId>
|
2011-03-28 18:02:03 +00:00
|
|
|
<version>5.6-SNAPSHOT</version>
|
2005-12-22 03:43:57 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-optional</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ActiveMQ :: Optional</name>
|
|
|
|
|
2009-09-24 14:53:57 +00:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<!-- Holds the josql artifacts -->
|
|
|
|
<repository>
|
|
|
|
<id>fusesource.m2</id>
|
|
|
|
<name>FUSE Community Release Repository</name>
|
|
|
|
<url>http://repo.fusesource.com/maven2</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
2005-12-22 03:43:57 +00:00
|
|
|
<dependencies>
|
2006-03-30 01:12:00 +00:00
|
|
|
<!-- activemq -->
|
2005-12-22 03:43:57 +00:00
|
|
|
<dependency>
|
2010-05-06 13:09:16 +00:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2005-12-22 03:43:57 +00:00
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
</dependency>
|
2006-01-02 18:35:24 +00:00
|
|
|
<dependency>
|
2010-05-06 13:09:16 +00:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2006-05-04 20:37:24 +00:00
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
<type>test-jar</type>
|
2005-12-22 03:43:57 +00:00
|
|
|
</dependency>
|
2006-03-30 01:12:00 +00:00
|
|
|
<dependency>
|
2010-05-06 13:09:16 +00:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2006-03-30 01:12:00 +00:00
|
|
|
<artifactId>activeio-core</artifactId>
|
|
|
|
</dependency>
|
2009-09-23 19:06:58 +00:00
|
|
|
<dependency>
|
2010-05-06 13:09:16 +00:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2009-09-23 19:06:58 +00:00
|
|
|
<artifactId>activemq-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2005-12-22 03:43:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2010-02-26 11:53:18 +00:00
|
|
|
<artifactId>spring-core</artifactId>
|
2009-09-14 11:34:34 +00:00
|
|
|
<version>${spring-version}</version>
|
2005-12-22 03:43:57 +00:00
|
|
|
</dependency>
|
2010-03-01 18:51:06 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jms</artifactId>
|
|
|
|
<version>${spring-version}</version>
|
|
|
|
</dependency>
|
2005-12-22 03:43:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>aopalliance</groupId>
|
|
|
|
<artifactId>aopalliance</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2008-01-16 19:29:10 +00:00
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
2005-12-22 03:43:57 +00:00
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-10-19 12:18:20 +00:00
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
2005-12-22 03:43:57 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2010-02-09 18:07:38 +00:00
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
|
<artifactId>jetty-all-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
2005-12-22 03:43:57 +00:00
|
|
|
</dependency>
|
2010-02-18 17:00:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-websocket</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
|
|
|
</dependency>
|
2005-12-22 03:43:57 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>axis</groupId>
|
|
|
|
<artifactId>axis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
|
|
|
</dependency>
|
2006-03-30 01:12:00 +00:00
|
|
|
|
2005-12-22 03:43:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
</dependency>
|
2011-02-10 14:24:01 +00:00
|
|
|
|
2009-04-28 11:04:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2006-03-09 07:11:37 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2006-03-11 18:46:24 +00:00
|
|
|
<scope>compile</scope>
|
2006-03-09 07:11:37 +00:00
|
|
|
</dependency>
|
2006-09-26 09:49:55 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xbean</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xmlpublic</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlbeans</groupId>
|
|
|
|
<artifactId>xbean_xpath</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>xalan</groupId>
|
|
|
|
<artifactId>xalan</artifactId>
|
|
|
|
<optional>true</optional>
|
2011-03-29 12:32:34 +00:00
|
|
|
</dependency>
|
2009-09-14 11:34:34 +00:00
|
|
|
|
2007-03-28 11:15:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2011-02-10 14:24:01 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-04-28 11:04:23 +00:00
|
|
|
<dependency>
|
2009-09-14 11:34:34 +00:00
|
|
|
<groupId>org.springframework.ws</groupId>
|
|
|
|
<artifactId>spring-oxm-tiger</artifactId>
|
|
|
|
<optional>true</optional>
|
2009-05-15 15:59:08 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-12-29 09:20:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
<artifactId>jettison</artifactId>
|
|
|
|
<scope>test</scope>
|
2009-09-23 19:06:58 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2010-01-19 17:20:59 +00:00
|
|
|
<groupId>org.apache.velocity</groupId>
|
2009-09-23 19:06:58 +00:00
|
|
|
<artifactId>velocity</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.josql</groupId>
|
|
|
|
<artifactId>josql</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.josql</groupId>
|
|
|
|
<artifactId>gentlyweb-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2007-03-28 11:15:22 +00:00
|
|
|
</dependencies>
|
2006-03-11 18:46:24 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<!-- Configure which tests are included/excuded -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2008-04-29 20:55:10 +00:00
|
|
|
</project>
|