Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions its/ruling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Fixes "Defaulting to no-operation (NOP) logger", which results in missing logs from the orchestrator. -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<!-- not a direct code dependency, but needed to download it and install it into SonarQube -->
<dependency>
<groupId>org.sonarsource.java</groupId>
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@
<test-java-agent-directory>${project.build.directory}/test-java-agent-libs</test-java-agent-directory>
<jacoco-agent-jar>org.jacoco.agent-${version.jacoco.plugin}-runtime.jar</jacoco-agent-jar>
<mockito-agent-jar>mockito-core-${mockito-core.version}.jar</mockito-agent-jar>

<slf4j.version>1.7.30</slf4j.version>
</properties>

<distributionManagement>
Expand Down Expand Up @@ -266,7 +268,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading