mirror of https://github.com/apache/activemq.git
adding build files
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@357793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
791c9ff5cc
commit
b556bf8141
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project default="default" xmlns:j="jelly:core" xmlns:ant="jelly:ant">
|
||||
|
||||
<goal name="default">
|
||||
<attainGoal name="jar:install"/>
|
||||
</goal>
|
||||
|
||||
<preGoal name="test:test">
|
||||
<j:choose>
|
||||
<j:when test="${context.getVariable('os.name').startsWith('Windows')}">
|
||||
<ant:copy todir=".">
|
||||
<ant:fileset dir="${maven.repo.local}/ibmaio/libs/win32" includes="*.dll"/>
|
||||
</ant:copy>
|
||||
</j:when>
|
||||
<j:when test="${context.getVariable('os.name').startsWith('Linux') and context.getVariable('os.version').startsWith('2.6.')}">
|
||||
<ant:copy todir=".">
|
||||
<ant:fileset dir="${maven.repo.local}/ibmaio/libs/linux32" includes="*.so"/>
|
||||
</ant:copy>
|
||||
<j:set var="maven.junit.jvmargs" value="${maven.junit.jvmargs} -Djava.library.path=."/>
|
||||
</j:when>
|
||||
<j:otherwise>
|
||||
<echo>Diabling IBM AIO tests since your platform (${context.getVariable('os.name')} ${context.getVariable('os.version')}) is not recognized</echo>
|
||||
<j:set var="maven.junit.jvmargs" value="${maven.junit.jvmargs} -Ddisable.aio.tests=true"/>
|
||||
</j:otherwise>
|
||||
</j:choose>
|
||||
</preGoal>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,18 @@
|
|||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>activemq</groupId>
|
||||
<artifactId>activeio-aio</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>Maven Quick Start Archetype</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1,4 @@
|
|||
maven.repo.remote=http://tranql.codehaus.org/maven,http://www.openejb.org/maven,http://www.ibiblio.org/maven
|
||||
|
||||
maven.multiproject.type=jar
|
||||
maven.eclipse.classpath.include=src/main/resources,src/test/resources
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE project>
|
||||
<!--
|
||||
* Copyright 2004 Hiram Chirino
|
||||
*
|
||||
* Licensed 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.
|
||||
-->
|
||||
<project>
|
||||
|
||||
<pomVersion>3</pomVersion>
|
||||
<extend>${basedir}/../../etc/project.xml</extend>
|
||||
|
||||
<name>ActiveIO :: AIO</name>
|
||||
<artifactId>activeio-aio</artifactId>
|
||||
<currentVersion>3.0-SNAPSHOT</currentVersion>
|
||||
|
||||
<dependencies>
|
||||
<!-- Required Dependencies -->
|
||||
<dependency>
|
||||
<groupId>activemq</groupId>
|
||||
<artifactId>activeio-core</artifactId>
|
||||
<version>${pom.currentVersion}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>backport-util-concurrent</groupId>
|
||||
<artifactId>backport-util-concurrent</artifactId>
|
||||
<version>2.0_01_pd</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ibmaio</groupId>
|
||||
<artifactId>ibmaio</artifactId>
|
||||
<version>1.0</version>
|
||||
<url>https://www7b.software.ibm.com/dl/AW-0H8/AW-0H8-p</url>
|
||||
</dependency>
|
||||
|
||||
<!-- Unit Test Dependencies -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junit_version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>${commons_logging_version}</version>
|
||||
<url>http://jakarta.apache.org/commons/logging/</url>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>${log4j_version}</version>
|
||||
<url>http://jakarta.apache.org/log4j</url>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>activemq</groupId>
|
||||
<artifactId>activeio-core-test</artifactId>
|
||||
<version>${pom.currentVersion}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
Loading…
Reference in New Issue