Skip to content

Commit 4beda3f

Browse files
committed
Ant and eclipse build files for thumbwheel
1 parent a743cb1 commit 4beda3f

File tree

4 files changed

+41
-15
lines changed

4 files changed

+41
-15
lines changed

app/display/thumbwheel/.classpath

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
5+
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
6+
<classpathentry kind="src" path="src/main/resources"/>
7+
<classpathentry combineaccessrules="false" kind="src" path="/phoebus-target"/>
8+
<classpathentry combineaccessrules="false" kind="src" path="/core-framework"/>
9+
<classpathentry combineaccessrules="false" kind="src" path="/core-util"/>
10+
<classpathentry combineaccessrules="false" kind="src" path="/core-pv"/>
11+
<classpathentry combineaccessrules="false" kind="src" path="/core-ui"/>
12+
<classpathentry combineaccessrules="false" kind="src" path="/core-security"/>
13+
<classpathentry combineaccessrules="false" kind="src" path="/core-types"/>
14+
<classpathentry combineaccessrules="false" kind="src" path="/app-display-model"/>
15+
<classpathentry combineaccessrules="false" kind="src" path="/app-display-representation"/>
16+
<classpathentry combineaccessrules="false" kind="src" path="/app-display-representation-javafx"/>
17+
<classpathentry kind="output" path="target/classes"/>
18+
</classpath>

app/display/thumbwheel/.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>app-display-thumbwheel</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

app/display/thumbwheel/build.xml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<project default="app-display-thumbwheel">
22
<import file="../../../dependencies/ant_settings.xml"/>
33

4-
<target name="app-display-model">
4+
<target name="app-display-thumbwheel">
55
<mkdir dir="${classes}"/>
66
<javac destdir="${classes}" debug="${debug}">
77
<src path="${src}"/>
8-
<src path="${test}"/>
98
<classpath>
109
<path refid="app-classpath"/>
10+
<pathelement path="../model/${build}/app-display-model-${version}.jar"/>
11+
<pathelement path="../representation/${build}/app-display-representation-${version}.jar"/>
12+
<pathelement path="../representation-javafx/${build}/app-display-representation-javafx-${version}.jar"/>
1113
</classpath>
1214
</javac>
1315

@@ -16,18 +18,5 @@
1618
<fileset dir="${resources}"/>
1719
</jar>
1820
</target>
19-
20-
<target name="test-display-thumbwheel" depends="app-display-thumbwheel">
21-
<junit printsummary="withOutAndErr" haltonfailure="yes">
22-
<classpath>
23-
<path refid="app-classpath"/>
24-
<pathelement path="${build}/app-display-thumbwheel-${version}.jar"/>
25-
</classpath>
26-
<batchtest>
27-
<zipfileset src="${build}/app-display-thumbwheel-${version}.jar" includes="**/*Test.class"/>
28-
</batchtest>
29-
<formatter type="plain" usefile="false"/>
30-
</junit>
31-
</target>
3221

3322
</project>

build.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<ant target="clean" dir="app/display/convert-medm"/>
4646
<ant target="clean" dir="app/display/convert-edm"/>
4747
<ant target="clean" dir="app/display/adapters"/>
48+
<ant target="clean" dir="app/display/thumbwheel"/>
4849
<ant target="clean" dir="app/scan/model"/>
4950
<ant target="clean" dir="app/scan/client"/>
5051
<ant target="clean" dir="app/scan/ui"/>
@@ -123,6 +124,7 @@
123124
<ant dir="app/display/convert-medm"/>
124125
<ant dir="app/display/convert-edm"/>
125126
<ant dir="app/display/adapters"/>
127+
<ant dir="app/display/thumbwheel"/>
126128
<ant dir="app/scan/model"/>
127129
<ant dir="app/scan/client"/>
128130
<ant dir="app/scan/ui"/>

0 commit comments

Comments
 (0)