This is an automated email from the ASF dual-hosted git repository.

desruisseaux pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git

commit 8dd8f36b1f74451f02bb2ce41e09bff63b693ec4
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Sun Oct 26 11:25:10 2025 +0100

    Use the `org.apache.maven.plugins.compiler.it` groupId consistently in all 
integration tests.
---
 src/it/MCOMPILER-157/annotation-processor/pom.xml                   | 2 +-
 src/it/MCOMPILER-157/annotation-user/pom.xml                        | 4 ++--
 src/it/MCOMPILER-157/pom.xml                                        | 2 +-
 src/it/MCOMPILER-192/pom.xml                                        | 5 ++---
 src/it/MCOMPILER-192/verify.groovy                                  | 2 +-
 src/it/MCOMPILER-203-processorpath/annotation-processor/pom.xml     | 2 +-
 src/it/MCOMPILER-203-processorpath/annotation-user/pom.xml          | 4 ++--
 src/it/MCOMPILER-203-processorpath/pom.xml                          | 2 +-
 src/it/MCOMPILER-205/pom.xml                                        | 5 ++---
 src/it/MCOMPILER-224/annotation-processor/pom.xml                   | 2 +-
 src/it/MCOMPILER-224/annotation-user/pom.xml                        | 6 +++---
 src/it/MCOMPILER-224/pom.xml                                        | 2 +-
 src/it/MCOMPILER-228/pom.xml                                        | 2 +-
 src/it/MCOMPILER-346/pom.xml                                        | 3 ++-
 src/it/MCOMPILER-373_mrjar/pom.xml                                  | 2 +-
 src/it/MCOMPILER-481-requires-static-included/app/pom.xml           | 4 ++--
 src/it/MCOMPILER-481-requires-static-included/pom.xml               | 3 ++-
 src/it/MCOMPILER-481-requires-static-included/service/pom.xml       | 2 +-
 src/it/MCOMPILER-485/pom.xml                                        | 5 ++---
 src/it/MCOMPILER-495/pom.xml                                        | 4 ++--
 src/it/MCOMPILER-500-package-info-incr/pom.xml                      | 3 +--
 src/it/MCOMPILER-512/pom.xml                                        | 3 +--
 src/it/MCOMPILER-525/pom.xml                                        | 3 ++-
 src/it/MCOMPILER-567-kt/pom.xml                                     | 3 ++-
 src/it/MCOMPILER-567/pom.xml                                        | 3 ++-
 src/it/MCOMPILER-609/pom.xml                                        | 3 ++-
 src/it/default-fork-windows/pom.xml                                 | 2 +-
 src/it/modular-sources/pom.xml                                      | 3 ++-
 src/it/module-info-patch/pom.xml                                    | 3 ++-
 src/it/multirelease-on-classpath/pom.xml                            | 3 ++-
 src/it/multirelease-patterns/multimodule/multirelease-base/pom.xml  | 2 +-
 src/it/multirelease-patterns/multimodule/multirelease-nine/pom.xml  | 4 ++--
 src/it/multirelease-patterns/multimodule/multirelease/pom.xml       | 2 +-
 .../multimodule/multirelease/src/assembly/mrjar.xml                 | 4 ++--
 src/it/multirelease-patterns/multimodule/pom.xml                    | 2 +-
 src/it/multirelease-patterns/multiproject/multirelease-base/pom.xml | 6 +++---
 src/it/multirelease-patterns/multiproject/multirelease-nine/pom.xml | 4 ++--
 src/it/multirelease-patterns/multiproject/pom.xml                   | 2 +-
 src/it/multirelease-patterns/singleproject-modular/pom.xml          | 2 +-
 src/it/multirelease-patterns/singleproject-root/pom.xml             | 3 +--
 src/it/multirelease-patterns/singleproject-runtime/pom.xml          | 2 +-
 .../multirelease-patterns/singleproject-separate-moduleinfo/pom.xml | 2 +-
 src/it/multirelease-patterns/singleproject-toolchains/pom.xml       | 2 +-
 src/it/multirelease-with-modules/pom.xml                            | 3 ++-
 44 files changed, 68 insertions(+), 64 deletions(-)

diff --git a/src/it/MCOMPILER-157/annotation-processor/pom.xml 
b/src/it/MCOMPILER-157/annotation-processor/pom.xml
index 2d37ce3..178bce6 100644
--- a/src/it/MCOMPILER-157/annotation-processor/pom.xml
+++ b/src/it/MCOMPILER-157/annotation-processor/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
diff --git a/src/it/MCOMPILER-157/annotation-user/pom.xml 
b/src/it/MCOMPILER-157/annotation-user/pom.xml
index 92e31db..6123103 100644
--- a/src/it/MCOMPILER-157/annotation-user/pom.xml
+++ b/src/it/MCOMPILER-157/annotation-user/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -30,7 +30,7 @@ under the License.
 
   <dependencies>
     <dependency>
-      <groupId>org.issue</groupId>
+      <groupId>org.apache.maven.plugins.compiler.it</groupId>
       <artifactId>annotation-processor</artifactId>
       <version>1.0-SNAPSHOT</version>
       <scope>provided</scope>
diff --git a/src/it/MCOMPILER-157/pom.xml b/src/it/MCOMPILER-157/pom.xml
index db45d8a..20e7830 100644
--- a/src/it/MCOMPILER-157/pom.xml
+++ b/src/it/MCOMPILER-157/pom.xml
@@ -20,7 +20,7 @@ under the License.
 <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>
 
-  <groupId>org.issue</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>compiler-test</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git a/src/it/MCOMPILER-192/pom.xml b/src/it/MCOMPILER-192/pom.xml
index 8968592..2fd33ae 100644
--- a/src/it/MCOMPILER-192/pom.xml
+++ b/src/it/MCOMPILER-192/pom.xml
@@ -18,11 +18,10 @@ specific language governing permissions and limitations
 under the License.
 -->
 <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>
 
-  <groupId>blah</groupId>
-  <artifactId>blah</artifactId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
+  <artifactId>MCOMPILER-192</artifactId>
   <version>1.0</version>
   <packaging>jar</packaging>
 
diff --git a/src/it/MCOMPILER-192/verify.groovy 
b/src/it/MCOMPILER-192/verify.groovy
index 1e386a2..b07880b 100644
--- a/src/it/MCOMPILER-192/verify.groovy
+++ b/src/it/MCOMPILER-192/verify.groovy
@@ -25,7 +25,7 @@ def causedByExpected = content.contains ( 'Caused by: 
org.apache.maven.plugin.co
 def twoFilesBeingCompiled = content.contains ( 'Compiling all files' )
 def checkResult = content.contains ( 'BUILD FAILURE' )
 def compilationFailure1 = content.contains( '[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-compiler-plugin:')
-def compilationFailure2 = content.contains( ':compile (default-compile) on 
project blah: Cannot compile')
+def compilationFailure2 = content.contains( ':compile (default-compile) on 
project MCOMPILER-192: Cannot compile')
 
 println "Jenkins: causedByExpected:${causedByExpected} 
twoFilesBeingCompiled:${twoFilesBeingCompiled} checkResult: ${checkResult} 
compilationFailure1: ${compilationFailure1} compilationFailure2: 
${compilationFailure2}"
 
diff --git a/src/it/MCOMPILER-203-processorpath/annotation-processor/pom.xml 
b/src/it/MCOMPILER-203-processorpath/annotation-processor/pom.xml
index 813f7b6..6f78baa 100644
--- a/src/it/MCOMPILER-203-processorpath/annotation-processor/pom.xml
+++ b/src/it/MCOMPILER-203-processorpath/annotation-processor/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
diff --git a/src/it/MCOMPILER-203-processorpath/annotation-user/pom.xml 
b/src/it/MCOMPILER-203-processorpath/annotation-user/pom.xml
index 9097d9b..d19c5d1 100644
--- a/src/it/MCOMPILER-203-processorpath/annotation-user/pom.xml
+++ b/src/it/MCOMPILER-203-processorpath/annotation-user/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -52,7 +52,7 @@ under the License.
           </annotationProcessors>
           <annotationProcessorPaths>
             <path>
-              <groupId>org.issue</groupId>
+              <groupId>org.apache.maven.plugins.compiler.it</groupId>
               <artifactId>annotation-processor</artifactId>
               <version>1.0-SNAPSHOT</version>
             </path>
diff --git a/src/it/MCOMPILER-203-processorpath/pom.xml 
b/src/it/MCOMPILER-203-processorpath/pom.xml
index db45d8a..20e7830 100644
--- a/src/it/MCOMPILER-203-processorpath/pom.xml
+++ b/src/it/MCOMPILER-203-processorpath/pom.xml
@@ -20,7 +20,7 @@ under the License.
 <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>
 
-  <groupId>org.issue</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>compiler-test</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git a/src/it/MCOMPILER-205/pom.xml b/src/it/MCOMPILER-205/pom.xml
index 50a684b..3c33d5c 100644
--- a/src/it/MCOMPILER-205/pom.xml
+++ b/src/it/MCOMPILER-205/pom.xml
@@ -18,11 +18,10 @@ specific language governing permissions and limitations
 under the License.
 -->
 <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>
 
-  <groupId>blah</groupId>
-  <artifactId>blah</artifactId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
+  <artifactId>MCOMPILER-205</artifactId>
   <version>1.0</version>
   <packaging>jar</packaging>
 
diff --git a/src/it/MCOMPILER-224/annotation-processor/pom.xml 
b/src/it/MCOMPILER-224/annotation-processor/pom.xml
index 4982fad..6cd42f4 100644
--- a/src/it/MCOMPILER-224/annotation-processor/pom.xml
+++ b/src/it/MCOMPILER-224/annotation-processor/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
diff --git a/src/it/MCOMPILER-224/annotation-user/pom.xml 
b/src/it/MCOMPILER-224/annotation-user/pom.xml
index 1f2246d..f660bb0 100644
--- a/src/it/MCOMPILER-224/annotation-user/pom.xml
+++ b/src/it/MCOMPILER-224/annotation-user/pom.xml
@@ -21,7 +21,7 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.issue</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-test</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -30,7 +30,7 @@ under the License.
 
   <dependencies>
     <dependency>
-      <groupId>org.issue</groupId>
+      <groupId>org.apache.maven.plugins.compiler.it</groupId>
       <artifactId>annotation-processor</artifactId>
       <version>1.0-SNAPSHOT</version>
       <scope>provided</scope>
@@ -50,7 +50,7 @@ under the License.
         </configuration>
         <dependencies>
           <dependency>
-            <groupId>org.issue</groupId>
+            <groupId>org.apache.maven.plugins.compiler.it</groupId>
             <artifactId>annotation-processor</artifactId>
             <version>1.0-SNAPSHOT</version>
           </dependency>
diff --git a/src/it/MCOMPILER-224/pom.xml b/src/it/MCOMPILER-224/pom.xml
index db45d8a..20e7830 100644
--- a/src/it/MCOMPILER-224/pom.xml
+++ b/src/it/MCOMPILER-224/pom.xml
@@ -20,7 +20,7 @@ under the License.
 <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>
 
-  <groupId>org.issue</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>compiler-test</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git a/src/it/MCOMPILER-228/pom.xml b/src/it/MCOMPILER-228/pom.xml
index 0925920..6fb9568 100644
--- a/src/it/MCOMPILER-228/pom.xml
+++ b/src/it/MCOMPILER-228/pom.xml
@@ -20,7 +20,7 @@ under the License.
 <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>
 
-  <groupId>org.apache.maven.plugins.compiler.its</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>mcompiler228</artifactId>
   <version>1.0-SNAPSHOT</version>
 
diff --git a/src/it/MCOMPILER-346/pom.xml b/src/it/MCOMPILER-346/pom.xml
index 462f871..2dccb81 100644
--- a/src/it/MCOMPILER-346/pom.xml
+++ b/src/it/MCOMPILER-346/pom.xml
@@ -19,7 +19,8 @@
   -->
 <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 
https://maven.apache.org/xsd/maven-4.0.0.xsd";>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>com.basilcrow</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>MCOMPILER-346-mre</artifactId>
   <version>1.0</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-373_mrjar/pom.xml 
b/src/it/MCOMPILER-373_mrjar/pom.xml
index 0c7d31d..96aa82a 100644
--- a/src/it/MCOMPILER-373_mrjar/pom.xml
+++ b/src/it/MCOMPILER-373_mrjar/pom.xml
@@ -20,7 +20,7 @@ under the License.
 <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>
 
-  <groupId>org.maven.bug</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>mcompiler373</artifactId>
   <version>1.0-SNAPSHOT</version>
 
diff --git a/src/it/MCOMPILER-481-requires-static-included/app/pom.xml 
b/src/it/MCOMPILER-481-requires-static-included/app/pom.xml
index e9b2ebd..dffb977 100644
--- a/src/it/MCOMPILER-481-requires-static-included/app/pom.xml
+++ b/src/it/MCOMPILER-481-requires-static-included/app/pom.xml
@@ -21,7 +21,7 @@ under the License.
 
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.example</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-bug</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
@@ -29,7 +29,7 @@ under the License.
 
   <dependencies>
     <dependency>
-      <groupId>org.example</groupId>
+      <groupId>org.apache.maven.plugins.compiler.it</groupId>
       <artifactId>compiler-bug-service</artifactId>
       <version>1.0-SNAPSHOT</version>
     </dependency>
diff --git a/src/it/MCOMPILER-481-requires-static-included/pom.xml 
b/src/it/MCOMPILER-481-requires-static-included/pom.xml
index a548f87..6b87ed4 100644
--- a/src/it/MCOMPILER-481-requires-static-included/pom.xml
+++ b/src/it/MCOMPILER-481-requires-static-included/pom.xml
@@ -19,7 +19,8 @@ under the License.
 -->
 <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>
-  <groupId>org.example</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>compiler-bug</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git a/src/it/MCOMPILER-481-requires-static-included/service/pom.xml 
b/src/it/MCOMPILER-481-requires-static-included/service/pom.xml
index 3790064..4e0d75e 100644
--- a/src/it/MCOMPILER-481-requires-static-included/service/pom.xml
+++ b/src/it/MCOMPILER-481-requires-static-included/service/pom.xml
@@ -21,7 +21,7 @@ under the License.
 
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.example</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>compiler-bug</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
diff --git a/src/it/MCOMPILER-485/pom.xml b/src/it/MCOMPILER-485/pom.xml
index 50a684b..8411cb2 100644
--- a/src/it/MCOMPILER-485/pom.xml
+++ b/src/it/MCOMPILER-485/pom.xml
@@ -18,11 +18,10 @@ specific language governing permissions and limitations
 under the License.
 -->
 <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>
 
-  <groupId>blah</groupId>
-  <artifactId>blah</artifactId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
+  <artifactId>MCOMPILER-485</artifactId>
   <version>1.0</version>
   <packaging>jar</packaging>
 
diff --git a/src/it/MCOMPILER-495/pom.xml b/src/it/MCOMPILER-495/pom.xml
index 50a684b..34f116e 100644
--- a/src/it/MCOMPILER-495/pom.xml
+++ b/src/it/MCOMPILER-495/pom.xml
@@ -21,8 +21,8 @@ under the License.
 
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>blah</groupId>
-  <artifactId>blah</artifactId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
+  <artifactId>MCOMPILER-495</artifactId>
   <version>1.0</version>
   <packaging>jar</packaging>
 
diff --git a/src/it/MCOMPILER-500-package-info-incr/pom.xml 
b/src/it/MCOMPILER-500-package-info-incr/pom.xml
index b26e909..6a9183f 100644
--- a/src/it/MCOMPILER-500-package-info-incr/pom.xml
+++ b/src/it/MCOMPILER-500-package-info-incr/pom.xml
@@ -18,10 +18,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 <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>
 
-  <groupId>org.apache.maven.plugins</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>maven-compiler-plugin-it-package-info-incr</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-512/pom.xml b/src/it/MCOMPILER-512/pom.xml
index dfffb7e..949f7e7 100644
--- a/src/it/MCOMPILER-512/pom.xml
+++ b/src/it/MCOMPILER-512/pom.xml
@@ -18,10 +18,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 <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>
 
-  <groupId>org.apache.maven.plugins</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>maven-compiler-plugin-MCOMPILER512</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-525/pom.xml b/src/it/MCOMPILER-525/pom.xml
index 64d9bdf..1c777f2 100644
--- a/src/it/MCOMPILER-525/pom.xml
+++ b/src/it/MCOMPILER-525/pom.xml
@@ -19,7 +19,8 @@
 -->
 <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/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>MCOMPILER-525-no-recreation</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-567-kt/pom.xml b/src/it/MCOMPILER-567-kt/pom.xml
index e96db53..1b1f837 100644
--- a/src/it/MCOMPILER-567-kt/pom.xml
+++ b/src/it/MCOMPILER-567-kt/pom.xml
@@ -19,7 +19,8 @@
 -->
 <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/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>MCOMPILER-567-kt</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-567/pom.xml b/src/it/MCOMPILER-567/pom.xml
index 282fdb4..0ec508d 100644
--- a/src/it/MCOMPILER-567/pom.xml
+++ b/src/it/MCOMPILER-567/pom.xml
@@ -19,7 +19,8 @@
 -->
 <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/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>MCOMPILER-567</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/MCOMPILER-609/pom.xml b/src/it/MCOMPILER-609/pom.xml
index 92a16cb..e4ed07a 100644
--- a/src/it/MCOMPILER-609/pom.xml
+++ b/src/it/MCOMPILER-609/pom.xml
@@ -19,7 +19,8 @@ under the License.
 -->
 <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>
-  <groupId>org.example.pce</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>MCOMPILER-609</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/default-fork-windows/pom.xml 
b/src/it/default-fork-windows/pom.xml
index c745523..aa2408d 100644
--- a/src/it/default-fork-windows/pom.xml
+++ b/src/it/default-fork-windows/pom.xml
@@ -21,7 +21,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.maven.plugins.compiler.it</groupId>
-  <artifactId>default-fork</artifactId>
+  <artifactId>default-fork-windows</artifactId>
   <version>1.0-SNAPSHOT</version>
 
   <name>Test for default configuration</name>
diff --git a/src/it/modular-sources/pom.xml b/src/it/modular-sources/pom.xml
index 7aabcb3..d003cd0 100644
--- a/src/it/modular-sources/pom.xml
+++ b/src/it/modular-sources/pom.xml
@@ -19,7 +19,8 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 
http://maven.apache.org/xsd/maven-4.1.0.xsd";>
   <modelVersion>4.1.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>modular-sources</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/module-info-patch/pom.xml b/src/it/module-info-patch/pom.xml
index a5f04fe..2c08aa2 100644
--- a/src/it/module-info-patch/pom.xml
+++ b/src/it/module-info-patch/pom.xml
@@ -19,7 +19,8 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 
http://maven.apache.org/xsd/maven-4.1.0.xsd";>
   <modelVersion>4.1.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>module-info-patch</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/multirelease-on-classpath/pom.xml 
b/src/it/multirelease-on-classpath/pom.xml
index 3ca2612..3882da2 100644
--- a/src/it/multirelease-on-classpath/pom.xml
+++ b/src/it/multirelease-on-classpath/pom.xml
@@ -19,7 +19,8 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 
http://maven.apache.org/xsd/maven-4.1.0.xsd";>
   <modelVersion>4.1.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease-on-classpath</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
diff --git a/src/it/multirelease-patterns/multimodule/multirelease-base/pom.xml 
b/src/it/multirelease-patterns/multimodule/multirelease-base/pom.xml
index a238429..ed01dbb 100644
--- a/src/it/multirelease-patterns/multimodule/multirelease-base/pom.xml
+++ b/src/it/multirelease-patterns/multimodule/multirelease-base/pom.xml
@@ -20,7 +20,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>multirelease</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>multirelease-parent</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
diff --git a/src/it/multirelease-patterns/multimodule/multirelease-nine/pom.xml 
b/src/it/multirelease-patterns/multimodule/multirelease-nine/pom.xml
index 738e32f..7da50a1 100644
--- a/src/it/multirelease-patterns/multimodule/multirelease-nine/pom.xml
+++ b/src/it/multirelease-patterns/multimodule/multirelease-nine/pom.xml
@@ -20,7 +20,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>multirelease</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>multirelease-parent</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
@@ -36,7 +36,7 @@
 
   <dependencies>
     <dependency>
-      <groupId>multirelease</groupId>
+      <groupId>org.apache.maven.plugins.compiler.it</groupId>
       <artifactId>multirelease-base</artifactId>
       <version>${project.version}</version>
     </dependency>
diff --git a/src/it/multirelease-patterns/multimodule/multirelease/pom.xml 
b/src/it/multirelease-patterns/multimodule/multirelease/pom.xml
index a2dd438..9c9e945 100644
--- a/src/it/multirelease-patterns/multimodule/multirelease/pom.xml
+++ b/src/it/multirelease-patterns/multimodule/multirelease/pom.xml
@@ -20,7 +20,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>multirelease</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>multirelease-parent</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
diff --git 
a/src/it/multirelease-patterns/multimodule/multirelease/src/assembly/mrjar.xml 
b/src/it/multirelease-patterns/multimodule/multirelease/src/assembly/mrjar.xml
index 32298e2..5831e05 100644
--- 
a/src/it/multirelease-patterns/multimodule/multirelease/src/assembly/mrjar.xml
+++ 
b/src/it/multirelease-patterns/multimodule/multirelease/src/assembly/mrjar.xml
@@ -29,7 +29,7 @@
     <moduleSet>
       <useAllReactorProjects>true</useAllReactorProjects>
       <includes>
-        <include>multirelease:multirelease-base</include>
+        
<include>org.apache.maven.plugins.compiler.it:multirelease-base</include>
       </includes>
       <binaries>
         <unpack>true</unpack>
@@ -39,7 +39,7 @@
     <moduleSet>
       <useAllReactorProjects>true</useAllReactorProjects>
       <includes>
-        <include>multirelease:multirelease-nine</include>
+        
<include>org.apache.maven.plugins.compiler.it:multirelease-nine</include>
       </includes>
       <binaries>
         <outputDirectory>META-INF/versions/9</outputDirectory>
diff --git a/src/it/multirelease-patterns/multimodule/pom.xml 
b/src/it/multirelease-patterns/multimodule/pom.xml
index 4fa6369..90503d5 100644
--- a/src/it/multirelease-patterns/multimodule/pom.xml
+++ b/src/it/multirelease-patterns/multimodule/pom.xml
@@ -19,8 +19,8 @@
   -->
 <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>
-  <groupId>multirelease</groupId>
 
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease-parent</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git 
a/src/it/multirelease-patterns/multiproject/multirelease-base/pom.xml 
b/src/it/multirelease-patterns/multiproject/multirelease-base/pom.xml
index 8407069..7a3152e 100644
--- a/src/it/multirelease-patterns/multiproject/multirelease-base/pom.xml
+++ b/src/it/multirelease-patterns/multiproject/multirelease-base/pom.xml
@@ -21,7 +21,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>multirelease</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>multirelease-parent</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
@@ -67,7 +67,7 @@
       </activation>
       <dependencies>
         <dependency>
-          <groupId>multirelease</groupId>
+          <groupId>org.apache.maven.plugins.compiler.it</groupId>
           <artifactId>multirelease-nine</artifactId>
           <version>1.0.0-SNAPSHOT</version>
           <scope>provided</scope>
@@ -107,7 +107,7 @@
                 </goals>
                 <phase>generate-resources</phase>
                 <configuration>
-                  <includeGroupIds>multirelease</includeGroupIds>
+                  
<includeGroupIds>org.apache.maven.plugins.compiler.it</includeGroupIds>
                   <includeArtifactIds>multirelease-nine</includeArtifactIds>
                   <excludeTransitive>true</excludeTransitive>
                   <includes>**/*.class</includes>
diff --git 
a/src/it/multirelease-patterns/multiproject/multirelease-nine/pom.xml 
b/src/it/multirelease-patterns/multiproject/multirelease-nine/pom.xml
index 11ccd16..98173cf 100644
--- a/src/it/multirelease-patterns/multiproject/multirelease-nine/pom.xml
+++ b/src/it/multirelease-patterns/multiproject/multirelease-nine/pom.xml
@@ -20,7 +20,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>multirelease</groupId>
+    <groupId>org.apache.maven.plugins.compiler.it</groupId>
     <artifactId>multirelease-parent</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
@@ -28,7 +28,7 @@
 
   <dependencies>
     <dependency>
-      <groupId>multirelease</groupId>
+      <groupId>org.apache.maven.plugins.compiler.it</groupId>
       <artifactId>multirelease</artifactId>
       <version>1.0.0-SNAPSHOT</version>
     </dependency>
diff --git a/src/it/multirelease-patterns/multiproject/pom.xml 
b/src/it/multirelease-patterns/multiproject/pom.xml
index 4c56d25..f3a7f84 100644
--- a/src/it/multirelease-patterns/multiproject/pom.xml
+++ b/src/it/multirelease-patterns/multiproject/pom.xml
@@ -20,7 +20,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>
 
-  <groupId>multirelease</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease-parent</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
diff --git a/src/it/multirelease-patterns/singleproject-modular/pom.xml 
b/src/it/multirelease-patterns/singleproject-modular/pom.xml
index 8f7ecc0..a24950d 100644
--- a/src/it/multirelease-patterns/singleproject-modular/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-modular/pom.xml
@@ -19,8 +19,8 @@
   -->
 <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>
-  <groupId>multirelease</groupId>
 
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>Single Project :: Runtime</name>
diff --git a/src/it/multirelease-patterns/singleproject-root/pom.xml 
b/src/it/multirelease-patterns/singleproject-root/pom.xml
index 52fb973..c3564e8 100644
--- a/src/it/multirelease-patterns/singleproject-root/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-root/pom.xml
@@ -19,8 +19,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>
-  <groupId>multirelease</groupId>
-
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>Single Project :: Root</name>
diff --git a/src/it/multirelease-patterns/singleproject-runtime/pom.xml 
b/src/it/multirelease-patterns/singleproject-runtime/pom.xml
index a4a4bec..3491c11 100644
--- a/src/it/multirelease-patterns/singleproject-runtime/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-runtime/pom.xml
@@ -19,8 +19,8 @@
   -->
 <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>
-  <groupId>multirelease</groupId>
 
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>Single Project :: Runtime</name>
diff --git 
a/src/it/multirelease-patterns/singleproject-separate-moduleinfo/pom.xml 
b/src/it/multirelease-patterns/singleproject-separate-moduleinfo/pom.xml
index dcde06b..86d4eba 100644
--- a/src/it/multirelease-patterns/singleproject-separate-moduleinfo/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-separate-moduleinfo/pom.xml
@@ -19,8 +19,8 @@
   -->
 <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>
-  <groupId>multirelease</groupId>
 
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>Single Project :: Separate Module Info</name>
diff --git a/src/it/multirelease-patterns/singleproject-toolchains/pom.xml 
b/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
index 759b0ef..6a9a4b1 100644
--- a/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
+++ b/src/it/multirelease-patterns/singleproject-toolchains/pom.xml
@@ -20,7 +20,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>
 
-  <groupId>multirelease</groupId>
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease</artifactId>
   <version>1.0.0-SNAPSHOT</version>
 
diff --git a/src/it/multirelease-with-modules/pom.xml 
b/src/it/multirelease-with-modules/pom.xml
index 1289c2b..eba2969 100644
--- a/src/it/multirelease-with-modules/pom.xml
+++ b/src/it/multirelease-with-modules/pom.xml
@@ -19,7 +19,8 @@
   -->
 <project xmlns="http://maven.apache.org/POM/4.1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 
http://maven.apache.org/xsd/maven-4.1.0.xsd";>
   <modelVersion>4.1.0</modelVersion>
-  <groupId>org.apache.maven.plugins</groupId>
+
+  <groupId>org.apache.maven.plugins.compiler.it</groupId>
   <artifactId>multirelease-with-modules</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>


Reply via email to