|
ActiveMQ example source code file (build.xml)
The ActiveMQ build.xml source code<?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. --> <project name="transactions" default="help" basedir="."> <property name="class.dir" value="target/classes" /> <property name="activemq.home" value="../.." /> <!-- example program defaults --> <property name="url" value="tcp://localhost:61616" /> <target name="help"> <echo> For the full demo: ant transactions_demo -Durl=tcp://hostname:1234 For the indicual components: ant retailer -Durl=tcp://hostname:1234 ant vendor -Durl=tcp://hostname:1234 ant hdsupplier -Durl=tcp://hostname:1234 ant monitorsupplier -Durl=tcp://hostname:1234 </echo> </target> <target name="clean"> <delete dir="target" quiet="true" /> <delete dir="${class.dir}" quiet="true" /> </target> <target name="init"> <mkdir dir="${class.dir}" /> <path id="javac.classpath"> <pathelement path="${class.dir}" /> <pathelement path="../conf" /> <fileset dir="${activemq.home}/lib"> <include name="**/*.jar" /> </fileset> </path> </target> <target name="compile" depends="init" description="Compile all Java"> <javac srcdir="src" destdir="${class.dir}" debug="true"> <classpath refid="javac.classpath" /> </javac> </target> <target name="transactions_demo" depends="compile" description="Runs the full demo"> <java classname="TransactionsDemo" fork="yes"> <classpath refid="javac.classpath" /> <jvmarg value="-server" /> <sysproperty key="activemq.home" value="${activemq.home}"/> <arg value="${url}" /> <arg value="${user}" /> <arg value="${password}" /> </java> </target> <target name="retailer" depends="compile" description="Runs the retailer"> <java classname="Retailer" fork="yes"> <classpath refid="javac.classpath" /> <jvmarg value="-server" /> <sysproperty key="activemq.home" value="${activemq.home}"/> <arg value="${url}" /> <arg value="${user}" /> <arg value="${password}" /> </java> </target> <target name="vendor" depends="compile" description="Runs the vendor"> <java classname="Vendor" fork="yes"> <classpath refid="javac.classpath" /> <jvmarg value="-server" /> <sysproperty key="activemq.home" value="${activemq.home}"/> <arg value="${url}" /> <arg value="${user}" /> <arg value="${password}" /> </java> </target> <target name="hdsupplier" depends="compile" description="Runs the Hard Drive Supplier"> <java classname="Supplier" fork="yes"> <classpath refid="javac.classpath" /> <jvmarg value="-server" /> <sysproperty key="activemq.home" value="${activemq.home}"/> <arg value="HardDrive" /> <arg value="${url}" /> <arg value="${user}" /> <arg value="${password}" /> </java> </target> <target name="monitorsupplier" depends="compile" description="Runs the Monitor Supplier"> <java classname="Supplier" fork="yes"> <classpath refid="javac.classpath" /> <jvmarg value="-server" /> <sysproperty key="activemq.home" value="${activemq.home}"/> <arg value="Monitor" /> <arg value="${url}" /> <arg value="${user}" /> <arg value="${password}" /> </java> </target> </project> Other ActiveMQ examples (source code examples)Here is a short list of links related to this ActiveMQ build.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.