-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.xml
36 lines (27 loc) · 1.4 KB
/
main.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
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2005-2006 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at:
http://developer.sun.com/berkeley_license.html
$Id: main.xml,v 1.3 2007/07/11 20:42:55 ie139813 Exp $ -->
<!-- main.xml: this is the file that should be included by the project
build files. It will figure out whether it is running from inside Netbeans
or command line and include appropriate tasks.
@Author: Inderjeet Singh -->
<project name="main" default="dummy-default">
<property file="build.properties"/>
<property value="1.5" name="default.javac.source"/>
<property value="1.5" name="default.javac.target"/>
<condition property="common-ant-tasks-file"
value="${ant.file}/../nbproject/build-impl.xml"
else="${ant.file.main}/../command-line-ant-tasks.xml">
<and>
<isset property="netbeans.home"/>
<available file="${ant.file}/../nbproject/build-impl.xml"/>
</and>
</condition>
<import file="${common-ant-tasks-file}"/>
<condition property="jaxb-tasks-file" value="${ant.file.main}/../jaxb-ant.xml">
<isset property="is.jaxb.app"/>
</condition>
<import file="${jaxb-tasks-file}" optional="true"/>
<target name="dummy-default"/>
</project>