192 lines
No EOL
6.5 KiB
XML
Executable file
192 lines
No EOL
6.5 KiB
XML
Executable file
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
This_software_was_developed_and_/_or_modified_by_Raytheon_Company,
|
|
pursuant_to_Contract_DG133W-05-CQ-1067_with_the_US_Government.
|
|
|
|
U.S._EXPORT_CONTROLLED_TECHNICAL_DATA
|
|
This_software_product_contains_export-restricted_data_whose
|
|
export/transfer/disclosure_is_restricted_by_U.S._law._Dissemination
|
|
to_non-U.S._persons_whether_in_the_United_States_or_abroad_requires
|
|
an_export_license_or_other_authorization.
|
|
|
|
Contractor_Name:________Raytheon_Company
|
|
Contractor_Address:_____6825_Pine_Street,_Suite_340
|
|
________________________Mail_Stop_B8
|
|
________________________Omaha,_NE_68106
|
|
________________________402.291.0100
|
|
|
|
See_the_AWIPS_II_Master_Rights_File_("Master_Rights_File.pdf")_for
|
|
further_licensing_information.
|
|
-->
|
|
<!DOCTYPE project [
|
|
<!ENTITY substitute-targets SYSTEM "substitute.xml">
|
|
]>
|
|
<project name="RCMPackageBuilder" default="deploy" basedir=".">
|
|
<!--
|
|
This build script expects the following projects to exist at the same
|
|
level as this project's folder. com.raytheon.rcm.lib
|
|
com.raytheon.rcm.server com.raytheon.rcm.server.mq
|
|
com.raytheon.rcm.tools org.apache.tools.bzip2 The projects must be
|
|
built before running this script.
|
|
-->
|
|
&substitute-targets;
|
|
|
|
<description>
|
|
Builds a deployment of the RCM for packaging
|
|
</description>
|
|
|
|
<!-- set global properties for this build -->
|
|
<property environment="user" />
|
|
|
|
<property name="src" location="src" />
|
|
<property name="build" location="build" />
|
|
<property name="deploy.dir" location="Deploy" />
|
|
|
|
<property name="props.dir" location="${basedir}/properties" />
|
|
<property file="${props.dir}/build-local.properties" />
|
|
|
|
<available file="${basedir}/tmp" property="tmp.ready" />
|
|
|
|
<condition property="pde.not.ready">
|
|
<and>
|
|
<isset property="pde.build" />
|
|
<not>
|
|
<isset property="tmp.ready" />
|
|
</not>
|
|
</and>
|
|
</condition>
|
|
|
|
<!-- Set default EDEX install location for copy filter -->
|
|
<property name="def.edex.install.dir" value="/awips" />
|
|
<condition property="edex.home" value="$EdexBaseDir" else="${def.edex.install.dir}">
|
|
<isset property="installer"/>
|
|
</condition>
|
|
|
|
<!-- Create clean deployment -->
|
|
<target name="deploy">
|
|
<echo message="----------------------------------------------------------------"/>
|
|
<echo message=" deploying RCM to ${deploy.dir}"/>
|
|
<echo message=" PDE Build = ${pde.build}"/>
|
|
<echo message="----------------------------------------------------------------"/>
|
|
<antcall target="un.deploy" />
|
|
<antcall target="re.deploy" />
|
|
<antcall target="config.deploy" />
|
|
</target>
|
|
|
|
<!--
|
|
Deploy on top of existing deployment. Old files not removed nor is the
|
|
configuration file changed.
|
|
-->
|
|
<target name="re.deploy">
|
|
<mkdir dir="${deploy.dir}" />
|
|
<mkdir dir="${deploy.dir}/bin" />
|
|
<mkdir dir="${deploy.dir}/lib" />
|
|
<mkdir dir="${deploy.dir}/data" />
|
|
<!-- copy with filter -->
|
|
<copy todir="${deploy.dir}" verbose="false">
|
|
<filterset refid="installer.filter.set" />
|
|
<fileset dir="bits">
|
|
<include name="bin/*" />
|
|
</fileset>
|
|
</copy>
|
|
<chmod perm="a-w,a+x">
|
|
<fileset dir="${deploy.dir}/bin">
|
|
<include name="*" />
|
|
</fileset>
|
|
</chmod>
|
|
|
|
<!--
|
|
Not all of these files should be made executable. Need to know all
|
|
executable names... or all non-executables...
|
|
-->
|
|
<copy todir="${deploy.dir}/bin" verbose="false">
|
|
<fileset dir="../com.raytheon.rcm.tools/src">
|
|
<include name="*.py" />
|
|
</fileset>
|
|
</copy>
|
|
<chmod perm="a+x">
|
|
<fileset dir="${deploy.dir}/bin">
|
|
<include name="*.py" />
|
|
<exclude name="stomp.py" />
|
|
</fileset>
|
|
</chmod>
|
|
<chmod perm="a-w">
|
|
<fileset dir="${deploy.dir}/bin">
|
|
<include name="*.py" />
|
|
</fileset>
|
|
</chmod>
|
|
|
|
<copy todir="${deploy.dir}/lib" flatten="true">
|
|
<fileset dir="../org.apache.activemq" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.qpid" includes="**/*.jar" />
|
|
<fileset dir="../org.slf4j" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.commons.beanutils" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.commons.codec" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.commons.collections" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.commons.lang" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.commons.logging" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.mina" includes="**/*.jar" />
|
|
<fileset dir="../org.apache.log4j" includes="**/*.jar" />
|
|
<fileset dir="../javax.jms" includes="**/*.jar" />
|
|
<fileset dir="../org.springframework">
|
|
<include name="**/spring-beans*.jar" />
|
|
<include name="**/spring-context*.jar" />
|
|
<include name="**/quartz-all*.jar" />
|
|
</fileset>
|
|
<fileset dir="../org.apache.tools.bzip2" includes="**/*.jar" />
|
|
</copy>
|
|
|
|
<delete dir="bin" />
|
|
<mkdir dir="bin" />
|
|
<antcall target="local.jar" />
|
|
<antcall target="pde.jar" />
|
|
<jar destfile="${deploy.dir}/lib/radarserver-mq.jar" basedir="bin" />
|
|
<delete dir="bin" />
|
|
</target>
|
|
|
|
<target name="local.jar" if="pde.build">
|
|
<copy toDir="bin">
|
|
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
|
|
includes="**/*.class" />
|
|
<fileset dir="tmp/plugins/com.raytheon.rcm.lib/@dot"
|
|
includes="**/*.txt" />
|
|
<fileset dir="tmp/plugins/com.raytheon.rcm.server/@dot"
|
|
includes="**/*.class" />
|
|
<fileset dir="tmp/plugins/com.raytheon.rcm.server.mq/@dot"
|
|
includes="**/*.class" />
|
|
<fileset dir="tmp/plugins/com.raytheon.rcm.server.mq/@dot"
|
|
includes="**/*.txt" />
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="pde.jar" unless="pde.build">
|
|
<copy todir="bin">
|
|
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.class" />
|
|
<fileset dir="../com.raytheon.rcm.lib/bin" includes="**/*.txt" />
|
|
<fileset dir="../com.raytheon.rcm.server/bin" includes="**/*.class" />
|
|
<fileset dir="../com.raytheon.rcm.server.mq/bin" includes="**/*.class" />
|
|
<fileset dir="../com.raytheon.rcm.server.mq/bin" includes="**/*.txt" />
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="config.deploy">
|
|
<copy todir="${deploy.dir}" verbose="false">
|
|
<filterset refid="installer.filter.set" />
|
|
<fileset dir="cfgbits">
|
|
<include name="**/*" />
|
|
<exclude name="**/config.xml"/>
|
|
</fileset>
|
|
</copy>
|
|
<!-- this is required because config.xml contains an '@' in a url -->
|
|
<copy todir="${deploy.dir}" verbose="false">
|
|
<filterset refid="config.xml.filter.set"/>
|
|
<fileset dir="cfgbits">
|
|
<include name="**/config.xml"/>
|
|
</fileset>
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="un.deploy">
|
|
<delete dir="${deploy.dir}"></delete>
|
|
</target>
|
|
</project> |