Skip to content

Commit c17bb3c

Browse files
committed
Exclude transitive web-ui dependencies
These are erroneously referenced by the SDK poms but not published, when they should be neither.
1 parent 66f951d commit c17bb3c

File tree

4 files changed

+27
-3
lines changed
  • event-stream-handler/event-stream-handler-gateway
  • event-stream-source/event-stream-source-gateway
  • report-component/report-component-gateway
  • report-datasource/report-datasource-gateway

4 files changed

+27
-3
lines changed

event-stream-handler/event-stream-handler-gateway/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,17 @@
2626
<version>${ignition-sdk-version}</version>
2727
<type>pom</type>
2828
<scope>provided</scope>
29+
<exclusions>
30+
<exclusion>
31+
<groupId>com.inductiveautomation.eventstream</groupId>
32+
<artifactId>web-ui</artifactId>
33+
</exclusion>
34+
</exclusions>
2935
</dependency>
3036
<dependency>
3137
<groupId>com.inductiveautomation.ignition.examples</groupId>
3238
<artifactId>event-stream-handler-common</artifactId>
3339
<version>${project.version}</version>
3440
</dependency>
3541
</dependencies>
36-
</project>
42+
</project>

event-stream-source/event-stream-source-gateway/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
<version>${ignition-sdk-version}</version>
2727
<scope>provided</scope>
2828
<type>pom</type>
29+
<exclusions>
30+
<exclusion>
31+
<groupId>com.inductiveautomation.eventstream</groupId>
32+
<artifactId>web-ui</artifactId>
33+
</exclusion>
34+
</exclusions>
2935
</dependency>
3036
<dependency>
3137
<groupId>com.inductiveautomation.ignition.examples</groupId>
@@ -47,4 +53,4 @@
4753
</plugin>
4854
</plugins>
4955
</build>
50-
</project>
56+
</project>

report-component/report-component-gateway/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<version>${ignition-sdk-version}</version>
2020
<scope>provided</scope>
2121
<type>pom</type>
22+
<exclusions>
23+
<exclusion>
24+
<groupId>com.inductiveautomation.reporting</groupId>
25+
<artifactId>web-ui</artifactId>
26+
</exclusion>
27+
</exclusions>
2228
</dependency>
2329
<dependency>
2430
<groupId>com.inductiveautomation.ignition.examples</groupId>
@@ -40,4 +46,4 @@
4046
</plugin>
4147
</plugins>
4248
</build>
43-
</project>
49+
</project>

report-datasource/report-datasource-gateway/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<version>${ignition-sdk-version}</version>
2020
<scope>provided</scope>
2121
<type>pom</type>
22+
<exclusions>
23+
<exclusion>
24+
<groupId>com.inductiveautomation.reporting</groupId>
25+
<artifactId>web-ui</artifactId>
26+
</exclusion>
27+
</exclusions>
2228
</dependency>
2329
<dependency>
2430
<groupId>com.inductiveautomation.ignition.examples</groupId>

0 commit comments

Comments
 (0)