Skip to content

Commit d6860ba

Browse files
committed
Update group id to remove 'enterprise'
1 parent 359f521 commit d6860ba

File tree

5 files changed

+52
-21
lines changed

5 files changed

+52
-21
lines changed

api/pom.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,19 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<parent>
24-
<groupId>jakarta.enterprise.concurrent</groupId>
25-
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
24+
<groupId>jakarta.concurrent</groupId>
25+
<artifactId>jakarta.concurrent.parent</artifactId>
2626
<version>3.2.0-SNAPSHOT</version>
2727
</parent>
2828

29-
<artifactId>jakarta.enterprise.concurrent-api</artifactId>
29+
<artifactId>jakarta.concurrent-api</artifactId>
30+
31+
<distributionManagement>
32+
<relocation>
33+
<groupId>jakarta.enterprise.concurrent</groupId>
34+
<artifactId>jakarta.enterprise.concurrent-api</artifactId>
35+
</relocation>
36+
</distributionManagement>
3037

3138
<name>Jakarta Concurrency</name>
3239
<description>

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,18 @@
2323
<version>1.0.9</version>
2424
</parent>
2525

26-
<groupId>jakarta.enterprise.concurrent</groupId>
27-
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
26+
<groupId>jakarta.concurrent</groupId>
27+
<artifactId>jakarta.concurrent.parent</artifactId>
2828
<version>3.2.0-SNAPSHOT</version>
2929
<packaging>pom</packaging>
3030

31+
<distributionManagement>
32+
<relocation>
33+
<groupId>jakarta.enterprise.concurrent</groupId>
34+
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
35+
</relocation>
36+
</distributionManagement>
37+
3138
<name>Jakarta Concurrency</name>
3239
<description>Jakarta Concurrency Parent</description>
3340
<url>https://github.com/jakartaee/concurrency</url>

specification/pom.xml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,32 @@
2020
<modelVersion>4.0.0</modelVersion>
2121

2222
<parent>
23-
<groupId>jakarta.enterprise.concurrent</groupId>
24-
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
23+
<groupId>jakarta.concurrent</groupId>
24+
<artifactId>jakarta.concurrent.parent</artifactId>
2525
<version>3.2.0-SNAPSHOT</version>
2626
</parent>
2727

28-
<artifactId>jakarta.enterprise.concurrent-spec</artifactId>
28+
<artifactId>jakarta.concurrent-spec</artifactId>
2929
<packaging>pom</packaging>
30-
3130
<name>Jakarta Concurrency Specification</name>
3231

32+
<distributionManagement>
33+
<relocation>
34+
<groupId>jakarta.enterprise.concurrent</groupId>
35+
<artifactId>concurrency-spec</artifactId>
36+
</relocation>
37+
<site>
38+
<url>scm:git:[email protected]:jakartaee/jakarta-concurrency.git</url>
39+
</site>
40+
</distributionManagement>
41+
3342
<scm>
3443
<connection>scm:git:[email protected]:eclipse-ee4j/jakarta-concurrency.git</connection>
3544
<developerConnection>scm:git:[email protected]:eclipse-ee4j/jakarta-concurrency.git</developerConnection>
3645
<url>https://github.com/eclipse-ee4j/jakarta-concurrency</url>
3746
<tag>HEAD</tag>
3847
</scm>
3948

40-
<distributionManagement>
41-
<site>
42-
<url>scm:git:[email protected]:eclipse-ee4j/jakarta-concurrency.git</url>
43-
</site>
44-
</distributionManagement>
45-
4649
<properties>
4750
<site.output.dir>${project.build.directory}/staging</site.output.dir>
4851
<maven.site.skip>true</maven.site.skip>

tck-dist/pom.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,22 @@
2020
<modelVersion>4.0.0</modelVersion>
2121

2222
<parent>
23-
<groupId>jakarta.enterprise.concurrent</groupId>
24-
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
23+
<groupId>jakarta.concurrent</groupId>
24+
<artifactId>jakarta.concurrent.parent</artifactId>
2525
<version>3.2.0-SNAPSHOT</version>
2626
</parent>
2727

28-
<artifactId>jakarta.enterprise.concurrent-tck-dist</artifactId>
28+
<artifactId>jakarta.concurrent-tck-dist</artifactId>
2929
<name>Jakarta Concurrency TCK Distribution</name>
3030
<description>Jakarta Concurrency TCK Distribution</description>
3131

32+
<distributionManagement>
33+
<relocation>
34+
<groupId>jakarta.enterprise.concurrent</groupId>
35+
<artifactId>jakarta.enterprise.concurrent-tck-dist</artifactId>
36+
</relocation>
37+
</distributionManagement>
38+
3239
<licenses>
3340
<license>
3441
<name>Eclipse Public License 2.0</name>

tck/pom.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,21 @@
2323
<modelVersion>4.0.0</modelVersion>
2424

2525
<parent>
26-
<groupId>jakarta.enterprise.concurrent</groupId>
27-
<artifactId>jakarta.enterprise.concurrent.parent</artifactId>
26+
<groupId>jakarta.concurrent</groupId>
27+
<artifactId>jakarta.concurrent.parent</artifactId>
2828
<version>3.2.0-SNAPSHOT</version>
2929
</parent>
3030

31-
<artifactId>jakarta.enterprise.concurrent-tck</artifactId>
31+
<artifactId>jakarta.concurrent-tck</artifactId>
3232
<packaging>jar</packaging>
3333

34+
<distributionManagement>
35+
<relocation>
36+
<groupId>jakarta.enterprise.concurrent</groupId>
37+
<artifactId>jakarta.enterprise.concurrent-tck</artifactId>
38+
</relocation>
39+
</distributionManagement>
40+
3441
<name>Jakarta Concurrency TCK</name>
3542
<description>Jakarta Concurrency TCK Tests</description>
3643
<licenses>

0 commit comments

Comments
 (0)