Skip to content

Commit

Permalink
Fixes #4507 - Cleanup use of piranha.version property in tests (#4520)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jan 12, 2025
1 parent 8a22f5d commit a80ff9c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 13 deletions.
4 changes: 1 addition & 3 deletions test/coreprofile/arquillian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
<packaging>war</packaging>
<name>Piranha - Test - Core Profile - Testing with JUnit 5 and Arquillian</name>
<properties>
<!-- dependencies -->
<piranha.version>${project.version}</piranha.version>
<!-- other -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand All @@ -28,7 +26,7 @@
<dependency>
<groupId>cloud.piranha.arquillian</groupId>
<artifactId>piranha-arquillian-managed</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
3 changes: 1 addition & 2 deletions test/coreprofile/json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<name>Piranha - Test - Core Profile - Create a JSON temperature service</name>
<properties>
<!-- other -->
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
Expand Down Expand Up @@ -46,7 +45,7 @@
<plugin>
<groupId>cloud.piranha.maven</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
Expand Down
3 changes: 1 addition & 2 deletions test/coreprofile/no_servlet_class/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<name>Piranha - Test - Core Profile - No servlet-class specified</name>
<properties>
<!-- other -->
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
Expand Down Expand Up @@ -46,7 +45,7 @@
<plugin>
<groupId>cloud.piranha.maven</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
Expand Down
3 changes: 1 addition & 2 deletions test/coreprofile/rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<name>Piranha - Test - Core Profile - REST</name>
<properties>
<!-- other -->
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
Expand All @@ -35,7 +34,7 @@
<plugin>
<groupId>cloud.piranha.maven</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
Expand Down
3 changes: 1 addition & 2 deletions test/micro/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<!-- other -->
<java.version>21</java.version>
<piranha.distribution>micro</piranha.distribution>
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
</properties>
Expand All @@ -29,7 +28,7 @@
<plugin>
<groupId>cloud.piranha.maven</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
Expand Down
3 changes: 1 addition & 2 deletions test/servlet/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<properties>
<!-- other -->
<piranha.distribution>servlet</piranha.distribution>
<piranha.version>${project.version}</piranha.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
Expand All @@ -43,7 +42,7 @@
<plugin>
<groupId>cloud.piranha.maven</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<version>${project.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
Expand Down

0 comments on commit a80ff9c

Please sign in to comment.