Skip to content

Commit

Permalink
Merge pull request #558 from jfdenise/fix-deps
Browse files Browse the repository at this point in the history
Replace some hardcoded groupId with project property
  • Loading branch information
jamezp authored Aug 29, 2024
2 parents a9a660c + 9bab710 commit 68dbb66
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
</dependency>

<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-plugin-core</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@
</dependency>

<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-plugin-core</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion tests/bootable-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<dependencies>
<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-maven-plugin-tests-shared</artifactId>
<version>${project.version}</version>
<scope>test</scope>
Expand Down
2 changes: 1 addition & 1 deletion tests/domain-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<dependencies>
<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-maven-plugin-tests-shared</artifactId>
<version>${project.version}</version>
<scope>test</scope>
Expand Down
4 changes: 2 additions & 2 deletions tests/shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<artifactId>galleon-core</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-plugin-core</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion tests/standalone-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<dependencies>
<dependency>
<groupId>org.wildfly.plugins</groupId>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-maven-plugin-tests-shared</artifactId>
<version>${project.version}</version>
<scope>test</scope>
Expand Down

0 comments on commit 68dbb66

Please sign in to comment.