Skip to content

Commit b894ed4

Browse files
committed
add integration test configuration
1 parent 0b67acb commit b894ed4

File tree

1 file changed

+10
-0
lines changed
  • java-shared-dependencies/dependency-analyzer

1 file changed

+10
-0
lines changed

java-shared-dependencies/dependency-analyzer/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<maven.compiler.source>17</maven.compiler.source>
1212
<maven.compiler.target>17</maven.compiler.target>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
<skip.surefire.tests>False</skip.surefire.tests>
1415
</properties>
1516

1617
<build>
@@ -51,12 +52,21 @@
5152
a mock http request in unit test-->
5253
<GITHUB_TOKEN>fake_value</GITHUB_TOKEN>
5354
</environmentVariables>
55+
<skipTests>${skip.surefire.tests}</skipTests>
5456
</configuration>
5557
</plugin>
5658
<plugin>
5759
<groupId>org.apache.maven.plugins</groupId>
5860
<artifactId>maven-failsafe-plugin</artifactId>
5961
<version>3.5.0</version>
62+
<executions>
63+
<execution>
64+
<goals>
65+
<goal>integration-test</goal>
66+
<goal>verify</goal>
67+
</goals>
68+
</execution>
69+
</executions>
6070
</plugin>
6171
</plugins>
6272
</build>

0 commit comments

Comments
 (0)