Issue #419 - a -Dgit={true|false} switch will be used to determine if deploy-install will deploy from a single directory source tree or a multiple directory source tree. Removed tmp files that should not be baselined.
Former-commit-id: eaa45d7123c43590be3d58fdf845708ade2dbb51
This commit is contained in:
parent
ecb38ba165
commit
66e05f4c96
6 changed files with 124 additions and 314 deletions
|
@ -7,8 +7,9 @@
|
|||
<property name="git.working.dir" value="" />
|
||||
<property name="component.to.deploy" value="" />
|
||||
<property name="update.python" value="true" />
|
||||
<property name="localization.sites" value="" />
|
||||
<property name="localization.sites" value="OAX" />
|
||||
<property name="python.version.dir" value="python2.7" />
|
||||
<property name="git" value="false" />
|
||||
|
||||
<property name="native.target" value="i386-pc-linux-gnu" />
|
||||
<property name="props.dir" location="${basedir}/properties" />
|
||||
|
@ -43,8 +44,8 @@
|
|||
<echo message="BUILD TIME = ${build.time}" />
|
||||
<echo message="BUILD SYSTEM = ${build.system}" />
|
||||
|
||||
<if>
|
||||
<equals arg1="${installer}" arg2="false" />
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<!-- Ensure the git working directory has been set. -->
|
||||
<if>
|
||||
|
@ -68,8 +69,17 @@
|
|||
</then>
|
||||
</if>
|
||||
|
||||
<var name="projects.dirs"
|
||||
value="${git.working.dir}/cots;${git.working.dir}/edexOsgi;${git.working.dir}/ncep;${git.working.dir}/RadarServer" />
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<var name="projects.dirs"
|
||||
value="${git.working.dir}/cots;${git.working.dir}/edexOsgi;${git.working.dir}/ncep;${git.working.dir}/RadarServer" />
|
||||
</then>
|
||||
<else>
|
||||
<var name="projects.dirs"
|
||||
value="${basedir}/../" />
|
||||
</else>
|
||||
</if>
|
||||
|
||||
<for param="propFile">
|
||||
<path id="propertyset">
|
||||
|
@ -202,32 +212,76 @@
|
|||
|
||||
<!-- deploys core components to ${esbDir}/lib/plugins -->
|
||||
<target name="deploy.core.developer">
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<antcall target="deploy.core.developer.multi" />
|
||||
</then>
|
||||
<else>
|
||||
<antcall target="deploy.core.developer.single" />
|
||||
</else>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="deploy.core.developer.single">
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${projects.dirs}"
|
||||
includesfile="${includes.dir}/core.includes"
|
||||
excludes="com.raytheon.edex.plugin.*/component-deploy.xml" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
</target>
|
||||
|
||||
<target name="deploy.core.developer.multi">
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/edexOsgi" includesfile="${includes.dir}/core.includes" excludes="com.raytheon.edex.plugin.*/component-deploy.xml" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/ncep" includesfile="${includes.dir}/core.includes" excludes="com.raytheon.edex.plugin.*/component-deploy.xml" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/RadarServer" includesfile="${includes.dir}/core.includes" excludes="com.raytheon.edex.plugin.*/component-deploy.xml" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
</target>
|
||||
|
||||
<!-- deploy third party jars to ${esbDir}/lib/dependencies -->
|
||||
<!-- deploy third party jars to ${esbDir}/lib/dependencies -->
|
||||
<target name="deploy.cots.developer">
|
||||
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<antcall target="deploy.cots.developer.multi" />
|
||||
</then>
|
||||
<else>
|
||||
<antcall target="deploy.cots.developer.single" />
|
||||
</else>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="deploy.cots.developer.single">
|
||||
<!-- OSGi cots that have their own projects -->
|
||||
<copy todir="${esbDir}/lib/dependencies" flatten="false">
|
||||
<fileset dir="${projects.dirs}">
|
||||
<includesfile name="${includes.dir}/cots.includes" />
|
||||
</fileset>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="deploy.cots.developer.multi">
|
||||
<!-- OSGi cots that have their own projects -->
|
||||
<copy todir="${esbDir}/lib/dependencies" flatten="false">
|
||||
<fileset dir="${git.working.dir}/cots">
|
||||
|
@ -248,25 +302,48 @@
|
|||
|
||||
<!-- deploys plugins to ${esbDir}/lib/plugins -->
|
||||
<target name="deploy.plugins.developer">
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<antcall target="deploy.plugins.developer.multi" />
|
||||
</then>
|
||||
<else>
|
||||
<antcall target="deploy.plugins.developer.single" />
|
||||
</else>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="deploy.plugins.developer.single">
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${projects.dirs}"
|
||||
includesfile="${includes.dir}/plugins.includes" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
</target>
|
||||
|
||||
<target name="deploy.plugins.developer.multi">
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/edexOsgi" includesfile="${includes.dir}/plugins.includes" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/ncep" includesfile="${includes.dir}/plugins.includes" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
<subant failonerror="true" inheritAll="false" inheritRefs="false">
|
||||
<fileset dir="${git.working.dir}/RadarServer" includesfile="${includes.dir}/plugins.includes" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
</target>
|
||||
|
@ -276,16 +353,28 @@
|
|||
<fileset dir="${working.dir}" includesfile="${includes.dir}/plugins.includes" />
|
||||
<target name="deploy" />
|
||||
<property name="dest.dir" value="${esbDir}/lib/plugins" />
|
||||
<!-- This following propetry turns on individual component utility deployment -->
|
||||
<!-- This following property turns on individual component utility deployment -->
|
||||
<property name="util.dest.dir" location="${utilDir}" />
|
||||
</subant>
|
||||
</target>
|
||||
|
||||
<!-- deploy ufpy and dynamicserialize to awips2-python -->
|
||||
<target name="deploy.python">
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<var name="pythonPackages.root"
|
||||
value="${git.working.dir}" />
|
||||
</then>
|
||||
<else>
|
||||
<var name="pythonPackages.root"
|
||||
value="${projects.dirs}" />
|
||||
</else>
|
||||
</if>
|
||||
|
||||
<!-- Ensure That The pythonPackages Project Is In The Workspace. -->
|
||||
<if>
|
||||
<available file="${git.working.dir}/pythonPackages/ufpy" type="dir" />
|
||||
<available file="${pythonPackages.root}/pythonPackages/ufpy" type="dir" />
|
||||
<then>
|
||||
<!-- Continue -->
|
||||
</then>
|
||||
|
@ -295,7 +384,7 @@
|
|||
</if>
|
||||
|
||||
<if>
|
||||
<available file="${git.working.dir}/pythonPackages/dynamicserialize"
|
||||
<available file="${pythonPackages.root}/pythonPackages/dynamicserialize"
|
||||
type="dir" />
|
||||
<then>
|
||||
<!-- Continue -->
|
||||
|
@ -306,7 +395,7 @@
|
|||
</if>
|
||||
|
||||
<if>
|
||||
<available file="${git.working.dir}/pythonPackages/pypies"
|
||||
<available file="${pythonPackages.root}/pythonPackages/pypies"
|
||||
type="dir" />
|
||||
<then>
|
||||
<!-- Continue -->
|
||||
|
@ -369,17 +458,17 @@
|
|||
<!-- Update ufpy, dynamicserialize, and pypies -->
|
||||
<copy todir="${python.installation.root}/lib/${python.version.dir}/site-packages/ufpy"
|
||||
flatten="false">
|
||||
<fileset dir="${git.working.dir}/pythonPackages/ufpy" />
|
||||
<fileset dir="${pythonPackages.root}/pythonPackages/ufpy" />
|
||||
</copy>
|
||||
|
||||
<copy todir="${python.installation.root}/lib/${python.version.dir}/site-packages/dynamicserialize"
|
||||
flatten="false">
|
||||
<fileset dir="${git.working.dir}/pythonPackages/dynamicserialize" />
|
||||
<fileset dir="${pythonPackages.root}/pythonPackages/dynamicserialize" />
|
||||
</copy>
|
||||
|
||||
<copy todir="${python.installation.root}/lib/${python.version.dir}/site-packages/pypies"
|
||||
flatten="false">
|
||||
<fileset dir="${git.working.dir}/pythonPackages/pypies/pypies" />
|
||||
<fileset dir="${pythonPackages.root}/pythonPackages/pypies/pypies" />
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
|
@ -454,11 +543,24 @@
|
|||
</target>
|
||||
|
||||
<target name="deploy.localization.site">
|
||||
|
||||
<if>
|
||||
<equals arg1="${git}" arg2="true" />
|
||||
<then>
|
||||
<var name="localization.root"
|
||||
value="${git.working.dir}/localization" />
|
||||
</then>
|
||||
<else>
|
||||
<var name="localization.root"
|
||||
value="${projects.dirs}" />
|
||||
</else>
|
||||
</if>
|
||||
|
||||
<!-- Ensure that the localization directory for the specified site exists
|
||||
in the localization project. -->
|
||||
<if>
|
||||
<not>
|
||||
<available file="${git.working.dir}/localization/localization.${site}"
|
||||
<available file="${localization.root}/localization.${site}"
|
||||
type="dir" />
|
||||
</not>
|
||||
<then>
|
||||
|
@ -472,7 +574,7 @@
|
|||
<try>
|
||||
<copy todir="${install.dir}/data/utility"
|
||||
flatten="false" verbose="true">
|
||||
<fileset dir="${git.working.dir}/localization/localization.${site}/utility" />
|
||||
<fileset dir="${localization.root}/localization.${site}/utility" />
|
||||
</copy>
|
||||
</try>
|
||||
|
||||
|
|
|
@ -1,87 +0,0 @@
|
|||
## Core includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.raytheon.edex.rpgenvdata/component-deploy.xml
|
||||
com.raytheon.uf.common.jms/component-deploy.xml
|
||||
com.raytheon.uf.edex.database/component-deploy.xml
|
||||
com.raytheon.uf.common.cache/component-deploy.xml
|
||||
com.raytheon.uf.edex.pointdata/component-deploy.xml
|
||||
com.raytheon.uf.edex.esb.camel.launcher/component-deploy.xml
|
||||
com.raytheon.uf.common.dissemination/component-deploy.xml
|
||||
com.raytheon.uf.edex.bufrtools/component-deploy.xml
|
||||
com.raytheon.edex.uengine/component-deploy.xml
|
||||
com.raytheon.uf.common.pointdata/component-deploy.xml
|
||||
com.raytheon.uf.common.serialization/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage.remote/component-deploy.xml
|
||||
com.raytheon.uf.common.awipstools/component-deploy.xml
|
||||
com.raytheon.edex.ingestsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.alertviz/component-deploy.xml
|
||||
com.raytheon.uf.common.serialization.comm/component-deploy.xml
|
||||
com.raytheon.uf.tools.gfesuite.servicebackup/component-deploy.xml
|
||||
com.raytheon.uf.common.auth/component-deploy.xml
|
||||
com.raytheon.uf.common.menus/component-deploy.xml
|
||||
com.raytheon.uf.edex.distribution/component-deploy.xml
|
||||
com.raytheon.uf.common.hydro/component-deploy.xml
|
||||
com.raytheon.uf.edex.core/component-deploy.xml
|
||||
com.raytheon.edex.common/component-deploy.xml
|
||||
com.raytheon.uf.edex.management/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage.hdf5/component-deploy.xml
|
||||
com.raytheon.uf.edex.cpgsrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.python.decoder/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.uengine/component-deploy.xml
|
||||
com.raytheon.uf.common.status/component-deploy.xml
|
||||
com.raytheon.uf.common.sounding/component-deploy.xml
|
||||
com.raytheon.edex.autobldsrv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.ingest.util/component-deploy.xml
|
||||
com.raytheon.uf.common.climo/component-deploy.xml
|
||||
com.raytheon.uf.common.localization/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common/component-deploy.xml
|
||||
com.raytheon.uf.common.message/component-deploy.xml
|
||||
com.raytheon.rcm.lib/component-deploy.xml
|
||||
com.raytheon.uf.common.datastorage/component-deploy.xml
|
||||
com.raytheon.uf.common.topo/component-deploy.xml
|
||||
com.raytheon.edex.notifysrv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.gempak.jna/component-deploy.xml
|
||||
com.raytheon.edex.utilitysrv/component-deploy.xml
|
||||
com.raytheon.uf.common.geospatial/component-deploy.xml
|
||||
com.raytheon.uf.common.python/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.purgeutil/component-deploy.xml
|
||||
com.raytheon.uf.edex.metartohmdbsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.time/component-deploy.xml
|
||||
com.raytheon.uf.common.pypies/component-deploy.xml
|
||||
com.raytheon.uf.common.monitor/component-deploy.xml
|
||||
com.raytheon.uf.common.comm/component-deploy.xml
|
||||
com.raytheon.edex.productsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.mpe/component-deploy.xml
|
||||
com.raytheon.edex.adaptersrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.textdbsrv/component-deploy.xml
|
||||
com.raytheon.uf.common.util/component-deploy.xml
|
||||
com.raytheon.uf.edex.dat.utils/component-deploy.xml
|
||||
com.raytheon.uf.common.ohd/component-deploy.xml
|
||||
com.raytheon.uf.common.site/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.ingest.grib.util/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.common/component-deploy.xml
|
||||
com.raytheon.uf.edex.log/component-deploy.xml
|
||||
com.raytheon.uf.edex.ohd/component-deploy.xml
|
||||
com.raytheon.uf.edex.awipstools/component-deploy.xml
|
||||
com.raytheon.uf.edex.esb.camel/component-deploy.xml
|
||||
com.raytheon.uf.common.dataquery/component-deploy.xml
|
||||
com.raytheon.uf.edex.decodertools/component-deploy.xml
|
||||
com.raytheon.uf.edex.topo/component-deploy.xml
|
||||
com.raytheon.uf.common.alertmonitor/component-deploy.xml
|
||||
com.raytheon.uf.common.activetable/component-deploy.xml
|
||||
com.raytheon.uf.edex.alertviz/component-deploy.xml
|
||||
com.raytheon.uf.common.management/component-deploy.xml
|
||||
com.raytheon.uf.common.derivparam/component-deploy.xml
|
||||
com.raytheon.uf.edex.dissemination/component-deploy.xml
|
||||
com.raytheon.edex.kml/component-deploy.xml
|
||||
com.raytheon.messaging.mhs/component-deploy.xml
|
||||
com.raytheon.uf.common.colormap/component-deploy.xml
|
||||
com.raytheon.uf.common.monitor.cpg/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.log/component-deploy.xml
|
||||
com.raytheon.edex.monitorsrv/component-deploy.xml
|
||||
com.raytheon.edex.textdb/component-deploy.xml
|
||||
com.raytheon.uf.edex.purgesrv/component-deploy.xml
|
||||
com.raytheon.uf.edex.auth/component-deploy.xml
|
||||
com.raytheon.uf.edex.site/component-deploy.xml
|
||||
com.raytheon.uf.edex.maintenance/component-deploy.xml
|
||||
com.raytheon.uf.edex.activetable/component-deploy.xml
|
||||
com.raytheon.uf.common.hlstopo/component-deploy.xml
|
|
@ -1,51 +0,0 @@
|
|||
## Cots includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.sun.jndi.nis/*.jar
|
||||
net.sf.ehcache/*.jar
|
||||
javax.persistence/*.jar
|
||||
org.eclipse.jetty/*.jar
|
||||
net.sf.cglib/*.jar
|
||||
org.apache.commons.logging/*.jar
|
||||
org.apache.commons.codec/*.jar
|
||||
org.apache.commons.lang/*.jar
|
||||
org.apache.commons.digester/*.jar
|
||||
org.dom4j/*.jar
|
||||
org.apache.tools.bzip2/*.jar
|
||||
org.slf4j/*.jar
|
||||
org.springframework/*.jar
|
||||
uk.ltd.getahead/*.jar
|
||||
org.objectweb/*.jar
|
||||
org.apache.activemq/*.jar
|
||||
org.apache.mina/*.jar
|
||||
org.postgres/postgis.jar
|
||||
org.postgres/postgresql-8.3-603.jdbc3.jar
|
||||
javax.vecmath/*.jar
|
||||
javax.mail/*.jar
|
||||
org.apache.commons.configuration/*.jar
|
||||
org.apache.commons.beanutils/*.jar
|
||||
com.facebook.thrift/*.jar
|
||||
org.apache.camel/*.jar
|
||||
org.apache.commons.pool/*.jar
|
||||
org.apache.log4j/*.jar
|
||||
org.jep/*.jar
|
||||
ncsa.hdf5/jhdf5.jar
|
||||
com.sun.jna/*.jar
|
||||
edu.wisc.ssec.mcidas/*.jar
|
||||
org.apache.commons.management/*.jar
|
||||
com.opensymphony.ognl/*.jar
|
||||
javax.jms/*.jar
|
||||
org.apache.commons.collections/*.jar
|
||||
org.jboss.cache/*.jar
|
||||
javax.measure/*.jar
|
||||
org.apache.http/*.jar
|
||||
org.apache.commons.cli/*.jar
|
||||
ucar.nc2/*.jar
|
||||
org.apache.tomcat.nativ/*.jar
|
||||
org.hibernate/*.jar
|
||||
org.apache.velocity/velocity-1.5.jar
|
||||
org.apache.velocity/velocity-tools-generic-1.3.jar
|
||||
org.apache.commons.validator/*.jar
|
||||
com.mchange/*.jar
|
||||
org.apache.qpid/*.jar
|
||||
org.geotools/*.jar
|
||||
javax.media.opengl/gluegen-rt.jar
|
||||
javax.activation/*.jar
|
|
@ -1,154 +0,0 @@
|
|||
## Plug-in includes file generated on 2012-01-20 17:08:45 GMT
|
||||
com.raytheon.uf.edex.plugin.satellite.mcidas/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadhydro/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.loctables/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.intlsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.acars/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.npp.viirs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.intlsigmet/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadprofiler/component-deploy.xml
|
||||
com.raytheon.edex.plugin.binlightning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.textlightning/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.svrwx/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.convsigmet/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrsgwh/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.scd/component-deploy.xml
|
||||
com.raytheon.edex.plugin.shef/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.cwa/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.level/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.airmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.mesowest/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ldadmesonet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.gfe/component-deploy.xml
|
||||
com.raytheon.edex.plugin.radar/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.pafm/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.tcs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.binlightning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.airep/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.aww/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.airmet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrquikscat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.preciprate/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.level.handler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrsigwx/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ffmp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.cwat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.atcf/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldad/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.manualIngest/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrsgwhv/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncccfp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.radar/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.nctext/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.cwa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.tcm/component-deploy.xml
|
||||
com.raytheon.edex.plugin.grib/component-deploy.xml
|
||||
com.raytheon.edex.plugin.warning/component-deploy.xml
|
||||
com.raytheon.edex.plugin.profiler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.scan/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.aww/component-deploy.xml
|
||||
com.raytheon.edex.plugin.pirep/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrua/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.obs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.goessounding/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrssmi/component-deploy.xml
|
||||
com.raytheon.edex.plugin.bufrua/component-deploy.xml
|
||||
com.raytheon.uf.common.plugin.nwsauth/component-deploy.xml
|
||||
com.raytheon.edex.plugin.goessounding/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.fog/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.wcp/component-deploy.xml
|
||||
com.raytheon.edex.plugin.sfcobs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrsgwh/component-deploy.xml
|
||||
com.raytheon.edex.plugin.poessounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncscat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.warning/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ffg/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrhdw/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrascat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.shef/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ccfp/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrssha/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ffg/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.vil/component-deploy.xml
|
||||
com.raytheon.edex.plugin.ldadmanual/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrquikscat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.nonconvsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.vil/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.tcg/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.lsr/component-deploy.xml
|
||||
com.raytheon.edex.plugin.redbook/component-deploy.xml
|
||||
com.raytheon.edex.plugin.obs/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.nwsauth/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.sfcobs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.h5scd/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.tcs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncccfp/component-deploy.xml
|
||||
com.raytheon.edex.plugin.bufrmos/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.ffmp/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.scan.common/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.mcidas/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.fssobs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.profiler/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.text/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncgrib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.satellite/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.mcidas/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.lsr/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.uair/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.cwat/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.idft/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.ldadhydro/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.grib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.acars/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.scan/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrncwf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.pirep/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.convsigmet/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.fog/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.airep/component-deploy.xml
|
||||
com.raytheon.edex.plugin.modelsounding/component-deploy.xml
|
||||
com.raytheon.edex.plugin.taf/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.preciprate/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.npp.viirs/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.nonconvsigmet/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.idft/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrascat/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.vaa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.uair/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.atcf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.svrwx/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.pafm/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.h5uair/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.qc/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.ncgrib/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.qpf/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrhdw/component-deploy.xml
|
||||
com.raytheon.edex.plugin.gfe/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.qc/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.fssobs/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrncwf/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.ncscat/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.level/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrmthdw/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.acarssounding/component-deploy.xml
|
||||
com.raytheon.edex.plugin.text/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.tcg/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.qpf/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.mosaic/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.bufrsgwhv/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrsigwx/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.ldadmesonet/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.bufrmthdw/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.acarssounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.tcm/component-deploy.xml
|
||||
com.raytheon.edex.plugin.satellite/component-deploy.xml
|
||||
com.raytheon.edex.plugin.recco/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.vaa/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.h5scd/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.scd/component-deploy.xml
|
||||
gov.noaa.nws.ncep.edex.plugin.wcp/component-deploy.xml
|
||||
com.raytheon.uf.common.dataplugin.poessounding/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.bufrssha/component-deploy.xml
|
||||
com.raytheon.uf.edex.plugin.bufrssmi/component-deploy.xml
|
||||
gov.noaa.nws.ncep.common.dataplugin.h5uair/component-deploy.xml
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue