We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc44524 commit 8cb15fdCopy full SHA for 8cb15fd
build.xml
@@ -9,6 +9,10 @@
9
<property name="dist.dir" value="dist" />
10
<property name="war.name" value="mystamps.war" />
11
12
+ <property
13
+ name="glassfish.deploy.dir"
14
+ value="/mnt/add/glassfishv3/glassfish/domains/domain1/autodeploy" />
15
+
16
<path id="classpath">
17
<fileset dir="${build.dir}" />
18
<fileset dir="${lib.dir}" includes="*.jar" />
@@ -43,4 +47,8 @@
43
47
</war>
44
48
</target>
45
49
50
+ <target name="deploy-glassfish" depends="war" description="Deploy WAR-file to GlassFish">
51
+ <copy file="${dist.dir}/${war.name}" todir="${glassfish.deploy.dir}" verbose="${verbose}" />
52
+ </target>
53
46
54
</project>
0 commit comments