blob: f2dbc55e524d62c117a8ee7800b1796dd0c4fd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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>
|