forked from oracle-samples/oracle-db-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
26 lines (20 loc) · 989 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="favorites" default="_deploy">
<!-- Override -->
<property name="extension.owner" value="Brian Jeffries" />
<property name="extension.owner.url" value = "https://github.com/bjeffrie/oracle-db-examples/tree/master/sqldeveloper/extension/xml/favorites" />
<!-- 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}" />
<!-- classpath declarations -->
<path id="local.classpath">
<path refid="oracle.sqldeveloper.utils-nodeps"/>
<path refid="oracle.sqldeveloper.utils"/>
<path refid="oracle.sqldeveloper" />
</path>
<!-- local targets -->
<!-- target overrides -->
<!-- Build structure from ../../buildtools/ant/build.xml < targets.xml -->
</project>