Skip to content

Commit a743cb1

Browse files
authored
Merge pull request #2430 from ControlSystemStudio/thumbwheel
Thumbwheel
2 parents 3b34cb6 + 5da78fc commit a743cb1

File tree

13 files changed

+1888
-0
lines changed

13 files changed

+1888
-0
lines changed

app/display/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@
1818
<module>convert-edm</module>
1919
<module>navigation</module>
2020
<module>adapters</module>
21+
<module>thumbwheel</module>
2122
</modules>
2223
</project>

app/display/thumbwheel/build.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<project default="app-display-thumbwheel">
2+
<import file="../../../dependencies/ant_settings.xml"/>
3+
4+
<target name="app-display-model">
5+
<mkdir dir="${classes}"/>
6+
<javac destdir="${classes}" debug="${debug}">
7+
<src path="${src}"/>
8+
<src path="${test}"/>
9+
<classpath>
10+
<path refid="app-classpath"/>
11+
</classpath>
12+
</javac>
13+
14+
<jar destfile="${build}/app-display-thumbwheel-${version}.jar">
15+
<fileset dir="${classes}"/>
16+
<fileset dir="${resources}"/>
17+
</jar>
18+
</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>
32+
33+
</project>

app/display/thumbwheel/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>app-display</artifactId>
7+
<groupId>org.phoebus</groupId>
8+
<version>4.7.1-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<properties>
13+
<maven.compiler.source>11</maven.compiler.source>
14+
<maven.compiler.target>11</maven.compiler.target>
15+
</properties>
16+
17+
<artifactId>app-display-thumbwheel</artifactId>
18+
<dependencies>
19+
<dependency>
20+
<groupId>org.phoebus</groupId>
21+
<artifactId>app-display-model</artifactId>
22+
<version>4.7.1-SNAPSHOT</version>
23+
<scope>compile</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.phoebus</groupId>
27+
<artifactId>app-display-representation</artifactId>
28+
<version>4.7.1-SNAPSHOT</version>
29+
<scope>compile</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.phoebus</groupId>
33+
<artifactId>app-display-representation-javafx</artifactId>
34+
<version>4.7.1-SNAPSHOT</version>
35+
<scope>compile</scope>
36+
</dependency>
37+
</dependencies>
38+
39+
40+
</project>

0 commit comments

Comments
 (0)