Skip to content

Commit 014e8b5

Browse files
committed
Fix naming of the waterfallplot, remove duplicate dependencies, and set correct parent.
1 parent e3ba9b9 commit 014e8b5

File tree

3 files changed

+10
-44
lines changed

3 files changed

+10
-44
lines changed

app/display/waterfallplot/build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<project default="app-waterfall-plot">
1+
<project default="app-display-waterfallplot">
22
<import file="../../dependencies/ant_settings.xml"/>
33

4-
<target name="app-waterfall-plot" depends="compile-app">
5-
<jar destfile="${build}/app-waterfall-plot-${version}.jar">
4+
<target name="app-display-waterfallplot" depends="compile-app">
5+
<jar destfile="${build}/app-display-waterfallplot-${version}.jar">
66
<fileset dir="${classes}"/>
77
<fileset dir="${resources}"/>
88
</jar>

app/display/waterfallplot/pom.xml

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
21
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<artifactId>app-waterfall-plot</artifactId>
62

73
<parent>
4+
<artifactId>app-display</artifactId>
85
<groupId>org.phoebus</groupId>
9-
<artifactId>app</artifactId>
106
<version>5.0.3-SNAPSHOT</version>
117
</parent>
128

9+
<modelVersion>4.0.0</modelVersion>
10+
11+
<artifactId>app-display-waterfallplot</artifactId>
12+
<name>${project.groupId}:${project.artifactId}</name>
13+
1314
<dependencies>
1415
<dependency>
1516
<groupId>org.phoebus</groupId>
1617
<artifactId>core-framework</artifactId>
1718
<version>5.0.3-SNAPSHOT</version>
1819
</dependency>
19-
<dependency>
20-
<groupId>org.phoebus</groupId>
21-
<artifactId>core-ui</artifactId>
22-
<version>5.0.3-SNAPSHOT</version>
23-
</dependency>
2420
<dependency>
2521
<groupId>org.phoebus</groupId>
2622
<artifactId>core-types</artifactId>
@@ -59,12 +55,6 @@
5955
<version>5.0.3-SNAPSHOT</version>
6056
<scope>compile</scope>
6157
</dependency>
62-
<dependency>
63-
<groupId>org.phoebus</groupId>
64-
<artifactId>core-framework</artifactId>
65-
<version>5.0.3-SNAPSHOT</version>
66-
<scope>compile</scope>
67-
</dependency>
6858
<dependency>
6959
<groupId>org.phoebus</groupId>
7060
<artifactId>app-display-model</artifactId>
@@ -77,24 +67,6 @@
7767
<version>5.0.3-SNAPSHOT</version>
7868
<scope>compile</scope>
7969
</dependency>
80-
<dependency>
81-
<groupId>org.phoebus</groupId>
82-
<artifactId>app-display-representation</artifactId>
83-
<version>5.0.3-SNAPSHOT</version>
84-
<scope>compile</scope>
85-
</dependency>
86-
<dependency>
87-
<groupId>org.phoebus</groupId>
88-
<artifactId>app-display-representation</artifactId>
89-
<version>5.0.3-SNAPSHOT</version>
90-
<scope>compile</scope>
91-
</dependency>
92-
<dependency>
93-
<groupId>org.phoebus</groupId>
94-
<artifactId>app-display-representation</artifactId>
95-
<version>5.0.3-SNAPSHOT</version>
96-
<scope>compile</scope>
97-
</dependency>
9870
<dependency>
9971
<groupId>org.phoebus</groupId>
10072
<artifactId>app-display-representation-javafx</artifactId>
@@ -107,11 +79,5 @@
10779
<version>5.0.3-SNAPSHOT</version>
10880
<scope>compile</scope>
10981
</dependency>
110-
<dependency>
111-
<groupId>org.phoebus</groupId>
112-
<artifactId>app-display-runtime</artifactId>
113-
<version>5.0.3-SNAPSHOT</version>
114-
<scope>compile</scope>
115-
</dependency>
11682
</dependencies>
11783
</project>

phoebus-product/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
</dependency>
159159
<dependency>
160160
<groupId>org.phoebus</groupId>
161-
<artifactId>app-waterfall-plot</artifactId>
161+
<artifactId>app-display-waterfallplot</artifactId>
162162
<version>5.0.3-SNAPSHOT</version>
163163
</dependency>
164164
<dependency>

0 commit comments

Comments
 (0)