Skip to content

Commit d8a26ec

Browse files
committed
maven failsafe plugin
1 parent 1a6e3e6 commit d8a26ec

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-failsafe-plugin</artifactId>
9898
<version>2.22.0</version>
99+
<executions>
100+
<execution>
101+
<goals>
102+
<goal>integration-test</goal>
103+
<goal>verify</goal>
104+
</goals>
105+
</execution>
106+
</executions>
99107
</plugin>
100108
</plugins>
101109
</build>

src/test/java/guru/springframework/sfgpetclinic/services/springdatajpa/PetTypeSDJpaServiceIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class PetTypeSDJpaServiceIT {
1212

1313
@BeforeEach
1414
void setUp() {
15+
System.out.println("*******************************************");
1516
}
1617

1718
@Test

0 commit comments

Comments
 (0)