blob: 7826200ab43cb356006ef29af9db0b698638bc1a [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE project [
3<!--
4
5 Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
6
7 This program and the accompanying materials are made available under the
8 terms of the Eclipse Public License v. 2.0, which is available at
9 http://www.eclipse.org/legal/epl-2.0.
10
11 This Source Code may also be made available under the following Secondary
12 Licenses when the conditions for such availability set forth in the
13 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
14 version 2 with the GNU Classpath Exception, which is available at
15 https://www.gnu.org/software/classpath/license.html.
16
17 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
18
19-->
20
21<!ENTITY commonBuild SYSTEM "./config/common.xml">
22]>
23
24<project name="deployment" default="all" basedir=".">
25
26 &commonBuild;
27
28
29 <target name="private-all">
30 <ant dir="war" target="private-all">
31 <property name="build" value="${build}/war"/>
32 </ant>
33 <ant dir="ejb" target="private-all">
34 <property name="build" value="${build}/ejb"/>
35 </ant>
36 <ant dir="ear" target="private-all">
37 <property name="build" value="${build}/ear"/>
38 </ant>
39 <ant dir="jsr88" target="private-all">
40 <property name="build" value="${build}/jsr88"/>
41 </ant>
42 <ant dir="dol" target="private-all">
43 <property name="build" value="${build}/dol"/>
44 </ant>
45<!-- <ant dir="autodeploy" target="private-all">
46 <property name="build" value="${build}/autodeploy"/>
47 </ant> -->
48 <ant dir="annotation" target="private-all">
49 <property name="build" value="${build}/annotation"/>
50 </ant>
51 <ant dir="ejb30" target="private-all">
52 <property name="build" value="${build}/ejb30"/>
53 </ant>
54
55 <ant dir="ejb31" target="private-all">
56 <property name="build" value="${build}/ejb31"/>
57 </ant>
58
59 <ant dir="descriptor_free_zone" target="private-all">
60 <property name="build" value="${build}/descriptor_free_zone"/>
61 </ant>
62 <ant dir="directorydeploy" target="private-all">
63 <property name="build" value="${build}/directorydeploy"/>
64 </ant>
65 <ant dir="versioning" target="private-all">
66 <property name="build" value="${build}/versioning"/>
67 </ant>
68 <ant dir="osgi" target="private-all">
69 <property name="build" value="${build}/osgi"/>
70 </ant>
71 <!-- comment out till issue 12637 is fixed
72 <ant dir="webservices" target="private-all">
73 <property name="build" value="${build}/webservices"/>
74 </ant>
75 -->
76 <ant dir="${testsRoot}/ear/earwithall2" target="depl-order">
77 <property name="build" value="${build}/ear/earwithall2"/>
78 </ant>
79 <ant dir="javaee8" target="private-all">
80 <property name="build" value="${build}/javaee8"/>
81 </ant>
82 </target>
83
84 <target name="clobber" depends="clean">
85 <delete file="${basedir}/tests-results.xml"/>
86 <delete file="${basedir}/results.html"/>
87 <delete file="${basedir}/client.log"/>
88 <delete file="${annotation.report.dir}"/>
89 </target>
90</project>