-
Notifications
You must be signed in to change notification settings - Fork 849
/
Copy pathbuild.xml
26 lines (21 loc) · 898 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
<?xml version="1.0" encoding="windows-1252" ?>
<project name="DependencyExample" 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.jfxrt}" />
<!-- classpath declarations -->
<path id="local.classpath">
<path refid="oracle.sqldeveloper.utils-nodeps"/>
<path refid="oracle.sqldeveloper.utils"/>
<path refid="oracle.sqldeveloper" />
<path refid="javafx.runtime"/>
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
</path>
<!-- local targets -->
<!-- target overrides -->
<!-- Build structure from ../../buildtools/ant/build.xml < targets.xml -->
</project>