forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
34 lines (28 loc) · 944 Bytes
/
build.xml
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
<?xml version="1.0"?>
<project name="portal-service" basedir="." default="compile">
<import file="../build-common-java.xml" />
<property name="deploy.dir" value="${app.server.lib.global.dir}" />
<property name="jar.file" value="${ant.project.name}" />
<property name="manifest.bundle.name" value="Liferay Portal Service" />
<property name="manifest.bundle.symbolic.name" value="portal-service" />
<target name="compile">
<mkdir dir="classes" />
<copy todir="classes">
<fileset dir="src" excludes="**/*.java" />
</copy>
<path id="web-lib.classpath">
<fileset dir="${project.dir}/lib/development" includes="junit.jar" />
</path>
<javac
classpathref="web.classpath"
compiler="${javac.compiler}"
debug="${javac.debug}"
deprecation="${javac.deprecation}"
destdir="classes"
encoding="${javac.encoding}"
includeAntRuntime="false"
nowarn="${javac.nowarn}"
srcdir="src"
/>
</target>
</project>