Conflicts: edexOsgi/build.edex/deploy-common/external-rules.xml edexOsgi/build.edex/deploy-common/plugin-methods.xml edexOsgi/com.raytheon.edex.plugin.text/src/com/raytheon/edex/plugin/text/dao/TextDao.java edexOsgi/com.raytheon.uf.edex.database/src/com/raytheon/uf/edex/database/plugin/PluginDao.java edexOsgi/com.raytheon.uf.edex.esb.camel/src/com/raytheon/uf/edex/esb/camel/Executor.java edexOsgi/build.edex/build.xml edexOsgi/build.edex/esb/conf/modes.xml edexOsgi/com.raytheon.edex.feature.uframe/feature.xml edexOsgi/com.raytheon.edex.plugin.grib/res/spring/grib-ingest.xml edexOsgi/com.raytheon.edex.plugin.grib/src/com/raytheon/edex/plugin/grib/Grib1Decoder.java edexOsgi/com.raytheon.edex.plugin.grib/src/com/raytheon/edex/plugin/grib/GribDecoder.java edexOsgi/com.raytheon.uf.common.gridcoverage/src/com/raytheon/uf/common/gridcoverage/GridCoverage.java Change-Id: I32226e8c316eb393d6f372eaa53b8811d0a954a0 Former-commit-id:8e69107b5a
[formerly98d7beae50
] [formerly31d7d09c10
[formerly 89583d97c8823818f87dc1a234078d85ba7bea4a]] Former-commit-id:31d7d09c10
Former-commit-id:bcf575966b
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<project default="enact.external-rules">
|
|
<!-- external deployment rules -->
|
|
<!--
|
|
TODO: if necessary, these could be read from a properties file.
|
|
1) utility -> /awips2/edex/data/utility
|
|
2) resources -> /awips2/edex/conf/resources
|
|
-->
|
|
<target name="enact.external-rules">
|
|
<!-- parameters -->
|
|
<property name="plugin._directory" value="" />
|
|
<property name="deployment._root" value="" />
|
|
<!--
|
|
* plugin._directory = the full directory path to the plugin
|
|
* deployment._root = the directory to deploy the files to
|
|
-->
|
|
|
|
<mkdir dir="${deployment._root}/data/utility" />
|
|
<if>
|
|
<available file="${plugin._directory}/utility" type="dir" />
|
|
<then>
|
|
<copy todir="${deployment._root}/data/utility" overwrite="true">
|
|
<fileset dir="${plugin._directory}/utility" />
|
|
</copy>
|
|
</then>
|
|
</if>
|
|
|
|
<mkdir dir="${deployment._root}/conf/resources" />
|
|
<if>
|
|
<available file="${plugin._directory}/resources" type="dir" />
|
|
<then>
|
|
<copy todir="${deployment._root}/conf/resources" overwrite="true" verbose="true">
|
|
<fileset dir="${plugin._directory}/resources" />
|
|
</copy>
|
|
</then>
|
|
</if>
|
|
</target>
|
|
</project>
|