Skip to content

Commit 99bab18

Browse files
authored
Merge pull request #1481 from brendandburns/logs
Add logging dependency to e2e tests.
2 parents f716b38 + e66222b commit 99bab18

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

e2e/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@
4141
<scope>test</scope>
4242
</dependency>
4343

44+
<dependency>
45+
<groupId>org.slf4j</groupId>
46+
<artifactId>slf4j-api</artifactId>
47+
<version>${slf4j.version}</version>
48+
<scope>test</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>org.slf4j</groupId>
52+
<artifactId>slf4j-simple</artifactId>
53+
<version>${slf4j.version}</version>
54+
<scope>test</scope>
55+
</dependency>
56+
4457
<!-- Following two deps exist to make spock2 work with junit4 -->
4558
<!-- Ref: https://github.com/groovy/GMavenPlus/wiki/Examples#spock-2-and-junit -->
4659
<dependency>
@@ -69,6 +82,10 @@
6982
<artifactId>maven-surefire-plugin</artifactId>
7083
<configuration>
7184
<skipTests>${e2e.skip}</skipTests>
85+
<systemPropertyVariables>
86+
<org.slf4j.simpleLogger.defaultLogLevel>DEBUG</org.slf4j.simpleLogger.defaultLogLevel>
87+
<org.slf4j.simpleLogger.showDateTime>true</org.slf4j.simpleLogger.showDateTime>
88+
</systemPropertyVariables>
7289
</configuration>
7390
</plugin>
7491
<plugin>

0 commit comments

Comments
 (0)