Skip to content

Commit

Permalink
Fixed location of test after cherry pick.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <[email protected]>
  • Loading branch information
spericas committed Oct 11, 2022
1 parent f62edaa commit d425470
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 37 deletions.
35 changes: 0 additions & 35 deletions health/health/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,39 +48,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>default-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<excludes>
<exclude>**/HealthSupportInitTest.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>health-support-init-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/HealthSupportInitTest.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
35 changes: 35 additions & 0 deletions reactive/health/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,39 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>default-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<excludes>
<exclude>**/HealthSupportInitTest.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>health-support-init-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<includes>
<include>**/HealthSupportInitTest.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

package io.helidon.health;
package io.helidon.reactive.health;

import io.helidon.faulttolerance.FaultTolerance;
import io.helidon.reactive.faulttolerance.FaultTolerance;
import org.junit.jupiter.api.Test;

import static org.hamcrest.CoreMatchers.is;
Expand Down

0 comments on commit d425470

Please sign in to comment.