2005-12-30 17:37:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2006-07-27 23:22:58 -04:00
|
|
|
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
|
2005-12-30 17:37:11 -05:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2006-02-18 01:03:51 -05:00
|
|
|
<project>
|
2005-12-21 23:07:49 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-15 19:33:05 -04:00
|
|
|
<artifactId>activemq-parent</artifactId>
|
2007-12-20 11:23:16 -05:00
|
|
|
<version>5.1-SNAPSHOT</version>
|
2005-12-21 23:07:49 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-systest</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ActiveMQ :: System Test</name>
|
|
|
|
<description>System Testing Framework for ActiveMQ</description>
|
|
|
|
|
|
|
|
<dependencies>
|
2006-02-18 01:03:51 -05:00
|
|
|
|
2005-12-21 23:07:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2005-12-21 23:07:49 -05:00
|
|
|
<artifactId>activemq-core</artifactId>
|
2006-02-18 01:03:51 -05:00
|
|
|
<version>${project.version}</version>
|
2005-12-21 23:07:49 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2006-02-09 16:41:59 -05:00
|
|
|
<groupId>org.apache.xbean</groupId>
|
2005-12-21 23:07:49 -05:00
|
|
|
<artifactId>xbean-spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib-full</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>jetty</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>jmdns</artifactId>
|
|
|
|
</dependency>
|
2006-02-18 01:03:51 -05:00
|
|
|
|
2005-12-21 23:07:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>annogen</groupId>
|
|
|
|
<artifactId>annogen</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2006-03-09 02:11:37 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2006-03-11 13:46:24 -05:00
|
|
|
<scope>compile</scope>
|
2006-03-09 02:11:37 -05:00
|
|
|
</dependency>
|
|
|
|
|
2005-12-21 23:07:49 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2006-02-18 01:03:51 -05:00
|
|
|
</project>
|