-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2430 from ControlSystemStudio/thumbwheel
Thumbwheel
- Loading branch information
Showing
13 changed files
with
1,888 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.