Skip to content

Commit

Permalink
Merge pull request #2430 from ControlSystemStudio/thumbwheel
Browse files Browse the repository at this point in the history
Thumbwheel
  • Loading branch information
shroffk authored Oct 31, 2022
2 parents 3b34cb6 + 5da78fc commit a743cb1
Show file tree
Hide file tree
Showing 13 changed files with 1,888 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/display/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
<module>convert-edm</module>
<module>navigation</module>
<module>adapters</module>
<module>thumbwheel</module>
</modules>
</project>
33 changes: 33 additions & 0 deletions app/display/thumbwheel/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<project default="app-display-thumbwheel">
<import file="../../../dependencies/ant_settings.xml"/>

<target name="app-display-model">
<mkdir dir="${classes}"/>
<javac destdir="${classes}" debug="${debug}">
<src path="${src}"/>
<src path="${test}"/>
<classpath>
<path refid="app-classpath"/>
</classpath>
</javac>

<jar destfile="${build}/app-display-thumbwheel-${version}.jar">
<fileset dir="${classes}"/>
<fileset dir="${resources}"/>
</jar>
</target>

<target name="test-display-thumbwheel" depends="app-display-thumbwheel">
<junit printsummary="withOutAndErr" haltonfailure="yes">
<classpath>
<path refid="app-classpath"/>
<pathelement path="${build}/app-display-thumbwheel-${version}.jar"/>
</classpath>
<batchtest>
<zipfileset src="${build}/app-display-thumbwheel-${version}.jar" includes="**/*Test.class"/>
</batchtest>
<formatter type="plain" usefile="false"/>
</junit>
</target>

</project>
40 changes: 40 additions & 0 deletions app/display/thumbwheel/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>app-display</artifactId>
<groupId>org.phoebus</groupId>
<version>4.7.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<artifactId>app-display-thumbwheel</artifactId>
<dependencies>
<dependency>
<groupId>org.phoebus</groupId>
<artifactId>app-display-model</artifactId>
<version>4.7.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.phoebus</groupId>
<artifactId>app-display-representation</artifactId>
<version>4.7.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.phoebus</groupId>
<artifactId>app-display-representation-javafx</artifactId>
<version>4.7.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>


</project>
Loading

0 comments on commit a743cb1

Please sign in to comment.