aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOURN-plugin/build.xml
diff options
context:
space:
mode:
authorChrisC <cc697w@intl.att.com>2017-01-31 11:40:03 +0100
committerChrisC <cc697w@intl.att.com>2017-01-31 12:59:33 +0100
commit025301d08b061482c1f046d562bf017c8cbcfe8d (patch)
tree68a2a549736c9bf0f7cd4e71c76e40ef7e2606f2 /bpmn/MSOURN-plugin/build.xml
parent2754ad52f833278a5c925bd788a16d1dce16a598 (diff)
Initial OpenECOMP MSO commit
Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d Signed-off-by: ChrisC <cc697w@intl.att.com>
Diffstat (limited to 'bpmn/MSOURN-plugin/build.xml')
-rw-r--r--bpmn/MSOURN-plugin/build.xml60
1 files changed, 60 insertions, 0 deletions
diff --git a/bpmn/MSOURN-plugin/build.xml b/bpmn/MSOURN-plugin/build.xml
new file mode 100644
index 0000000000..f2dbc55e52
--- /dev/null
+++ b/bpmn/MSOURN-plugin/build.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="urnMap-plugin" default="deploy.jboss">
+
+ <property file="build.properties" />
+ <property file="${user.home}/.camunda/build.properties" />
+ <property name="target.dir" value="target" />
+
+ <condition property="mvn.executable" value="mvn.bat" else="mvn">
+ <os family="windows"/>
+ </condition>
+
+ <target name="deploy.jboss" depends="package.mvn, install.cockpit.plugin" description="Copies the cockit plugin to the deployment directory defined in '${basedir}/build.properties' or '${user.home}/.camunda/build.properties'" />
+
+ <target name="deploy.tomcat" depends="package.mvn" description="Copies the cockpit plugin to the deployment directory defined in '${basedir}/build.properties' or '${user.home}/.camunda/build.properties'">
+ <fail unless="deploy.tomcat.dir" message="No deployment folder has been configured. Please copy the file '${basedir}/build.properties.example' to '${basedir}/build.properties' or '${user.home}/.camunda/build.properties' and change it according to your environment." />
+ <copy file="${target.dir}/${ant.project.name}.jar" todir="${deploy.tomcat.dir}/camunda/WEB-INF/lib" />
+ <touch file="${deploy.tomcat.dir}/camunda/WEB-INF/web.xml"/>
+ </target>
+
+ <target name="package.mvn">
+ <exec executable="${mvn.executable}" dir="." failonerror="true">
+ <env key="MAVEN_OPTS" value="-Xmx1024m -Xms512m -DskipTests=true -Dmaven.test.skip=true" />
+ <arg line="clean package" />
+ </exec>
+ </target>
+
+ <target name="install.cockpit.plugin">
+ <fail unless="deploy.jboss.dir" message="No deployment folder has been configured. Please copy the file '${basedir}/build.properties.example' to '${basedir}/build.properties' or '${user.home}/.camunda/build.properties' and change it according to your environment." />
+ <path id="cockpit.file.id">
+ <fileset dir="${deploy.jboss.dir}">
+ <include name="camunda-webapp-*.war"/>
+ </fileset>
+ </path>
+ <property name="cockpit.file" refid="cockpit.file.id"/>
+ <war destfile="${cockpit.file}" update="true">
+ <zipfileset file="${target.dir}/${ant.project.name}.jar" fullpath="WEB-INF/lib/${ant.project.name}.jar" />
+ </war>
+ </target>
+
+ <target name="undeploy.jboss" description="Deletes the cockpit plugin from the deployment directory defined in '${basedir}/build.properties' or '${user.home}/.camunda/build.properties'">
+ <path id="cockpit.file.id">
+ <fileset dir="${deploy.jboss.dir}">
+ <include name="camunda-webapp-*.war"/>
+ </fileset>
+ </path>
+ <property name="cockpit.file" refid="cockpit.file.id"/>
+ <basename property="cockpit.filename" file="${cockpit.file}"/>
+ <move file="${cockpit.file}" todir="${java.io.tmpdir}"/>
+ <zip destfile="${cockpit.file}">
+ <zipfileset src="${java.io.tmpdir}/${cockpit.filename}">
+ <exclude name="WEB-INF/lib/${ant.project.name}.jar"/>
+ </zipfileset>
+ </zip>
+ </target>
+
+ <target name="undeploy.tomcat" description="Deletes the cockpit plugin from the deployment directory defined in '${basedir}/build.properties' or '${user.home}/.camunda/build.properties'">
+ <delete file="${deploy.tomcat.dir}/camunda/WEB-INF/lib/${ant.project.name}.jar" />
+ </target>
+
+</project>