Skip to content

Commit f136195

Browse files
authored
Merge pull request #3453 from ControlSystemStudio/fix_maven
adding <name> to all the module poms as required by maven central
2 parents d74a507 + 09085cb commit f136195

File tree

103 files changed

+209
-142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+209
-142
lines changed

app/3d-viewer/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
<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">
23
<modelVersion>4.0.0</modelVersion>
34
<parent>
@@ -6,6 +7,7 @@
67
<version>5.0.2-SNAPSHOT</version>
78
</parent>
89
<artifactId>app-3d-viewer</artifactId>
10+
<name>${project.groupId}:${project.artifactId}</name>
911
<dependencies>
1012
<dependency>
1113
<groupId>org.phoebus</groupId>

app/alarm/audio-annunciator/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
55
<groupId>org.phoebus</groupId>
66
<artifactId>app-alarm</artifactId>
77
<version>5.0.2-SNAPSHOT</version>
88
</parent>
99
<artifactId>app-alarm-audio-annunciator</artifactId>
10-
10+
<name>${project.groupId}:${project.artifactId}</name>
1111
<properties>
1212
<maven.compiler.source>17</maven.compiler.source>
1313
<maven.compiler.target>17</maven.compiler.target>
@@ -26,4 +26,4 @@
2626
</dependency>
2727
</dependencies>
2828

29-
</project>
29+
</project>

app/alarm/datasource/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-datasouce</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<dependencies>
1011
<dependency>
1112
<groupId>org.junit.jupiter</groupId>

app/alarm/freetts-annunciator/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
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">
32
<modelVersion>4.0.0</modelVersion>
43
<parent>
@@ -7,8 +6,8 @@
76
<version>5.0.2-SNAPSHOT</version>
87
</parent>
98
<artifactId>app-alarm-freetts-annunciator</artifactId>
10-
11-
<properties>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<properties>
1211
<maven.compiler.source>17</maven.compiler.source>
1312
<maven.compiler.target>17</maven.compiler.target>
1413
</properties>
@@ -27,4 +26,4 @@
2726
</dependency>
2827
</dependencies>
2928

30-
</project>
29+
</project>

app/alarm/logging-ui/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-logging-ui</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<dependencies>
1011
<dependency>
1112
<groupId>org.phoebus</groupId>

app/alarm/model/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-model</artifactId>
9-
<dependencies>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<dependencies>
1011
<dependency>
1112
<groupId>org.junit.jupiter</groupId>
1213
<artifactId>junit-jupiter</artifactId>

app/alarm/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<packaging>pom</packaging>
44
<artifactId>app-alarm</artifactId>
5+
<name>${project.groupId}:${project.artifactId}</name>
56
<parent>
67
<groupId>org.phoebus</groupId>
78
<artifactId>app</artifactId>

app/alarm/ui/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-alarm-ui</artifactId>
9-
<dependencies>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<dependencies>
1011
<dependency>
1112
<groupId>org.junit.jupiter</groupId>
1213
<artifactId>junit-jupiter</artifactId>

app/channel/channelfinder/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-channel-channelfinder</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<dependencies>
1011
<dependency>
1112
<groupId>org.phoebus</groupId>

app/channel/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<version>5.0.2-SNAPSHOT</version>
77
</parent>
88
<artifactId>app-channel</artifactId>
9+
<name>${project.groupId}:${project.artifactId}</name>
910
<packaging>pom</packaging>
1011
<description>Support for pvs with properties and tags as used by directory services</description>
1112
<modules>

0 commit comments

Comments
 (0)