Skip to content

Commit

Permalink
Update groupId as per
Browse files Browse the repository at this point in the history
https://github.com/eclipse-ee4j/ee4j/wiki/New-Maven-Coordinates

Update spec plugin to 1.5 which is now able to validate jakarta
Maven co-ordinates

Signed-off-by: Mark Thomas <markt@apache.org>
  • Loading branch information
markt-asf committed Sep 27, 2018
1 parent cd439b1 commit 3e79e83
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>jakarta</groupId>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-all</artifactId>
<version>1.1.1</version>
</parent>
Expand Down
4 changes: 2 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<version>1.0.1</version>
</parent>

<groupId>jakarta</groupId>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-all</artifactId>
<packaging>pom</packaging>
<!--
Expand Down Expand Up @@ -215,7 +215,7 @@
<plugin>
<groupId>org.glassfish.build</groupId>
<artifactId>spec-version-maven-plugin</artifactId>
<version>1.2</version>
<version>1.5</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
9 changes: 2 additions & 7 deletions api/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>jakarta</groupId>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-all</artifactId>
<version>1.1.1</version>
</parent>
Expand All @@ -43,6 +43,7 @@
<groupId>org.glassfish.build</groupId>
<artifactId>spec-version-maven-plugin</artifactId>
<configuration>
<specMode>jakarta</specMode>
<spec>
<nonFinal>false</nonFinal>
<jarType>api</jarType>
Expand All @@ -57,13 +58,7 @@
<execution>
<goals>
<goal>set-spec-properties</goal>
<!--
Disable the check as it currently because the
groupId does not start with javax. See #266
-->
<!--
<goal>check-module</goal>
-->
</goals>
</execution>
</executions>
Expand Down

0 comments on commit 3e79e83

Please sign in to comment.