Skip to content

Commit

Permalink
Replace groupId with an expression where possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhusar committed Dec 17, 2024
1 parent 91108cb commit f875430
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions code-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,27 @@

<dependencies>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-spi</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-tomcat-9.0</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-tomcat-10.1</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-tomcat-11.0</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-core</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-load-spi</artifactId>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<name>mod_cluster: Core</name>
<dependencies>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-spi</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-load-spi</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<dependencies>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-core</artifactId>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion load-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<dependencies>
<dependency>
<groupId>org.jboss.mod_cluster</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>mod_cluster-container-spi</artifactId>
</dependency>
</dependencies>
Expand Down

0 comments on commit f875430

Please sign in to comment.