forked from oracle-samples/oracle-db-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
23 lines (18 loc) · 839 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
<?xml version="1.0" encoding="windows-1252" ?>
<project name="WorksheetAction" default="_deploy">
<!-- imports -->
<import file="../../buildtools/ant/build.xml" />
<!-- bundle dependencies -->
<property name="osgi.required.bundles"
value="${osgi.bundle.default.dependencies},${osgi.bundle.sqldev},${osgi.bundle.utils-nodeps},${osgi.bundle.utils},${osgi.bundle.worksheet}" />
<!-- classpath declarations -->
<path id="local.classpath">
<path refid="oracle.sqldeveloper.utils-nodeps"/>
<path refid="oracle.sqldeveloper.utils"/>
<path refid="oracle.sqldeveloper" />
<path refid="oracle.sqldeveloper.worksheet" />
</path>
<!-- local targets -->
<!-- target overrides -->
<!-- Build structure from ../../buildtools/ant/build.xml < targets.xml -->
</project>