2006-07-12 01:08:00 -04: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
|
2006-07-12 01:08:00 -04: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.
|
|
|
|
-->
|
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-07-12 01:08:00 -04:00
|
|
|
<artifactId>activemq-parent</artifactId>
|
2007-12-20 11:23:16 -05:00
|
|
|
<version>5.1-SNAPSHOT</version>
|
2006-07-12 01:08:00 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-repository-builder</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>ActiveMQ :: Repository Builder</name>
|
|
|
|
<description>Puts together a maven 2 repository of all the ActiveMQ artifacts and dependencies</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${pom.groupId}</groupId>
|
2006-07-26 02:07:11 -04:00
|
|
|
<artifactId>org.apache.activemq</artifactId>
|
2006-07-12 01:08:00 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/repo.xml</descriptor>
|
|
|
|
<finalName>repository</finalName>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|