Skip to content
Snippets Groups Projects
Commit 3cbd3f10 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-6891 Fix maven testCompile

parent 744c068e
Branches
Tags
No related merge requests found
...@@ -154,7 +154,6 @@ ...@@ -154,7 +154,6 @@
<id>log4j2-plugin-processor</id> <id>log4j2-plugin-processor</id>
<goals> <goals>
<goal>compile</goal> <goal>compile</goal>
<goal>testCompile</goal>
</goals> </goals>
<phase>process-classes</phase> <phase>process-classes</phase>
<configuration> <configuration>
......
...@@ -30,7 +30,7 @@ import lombok.SneakyThrows; ...@@ -30,7 +30,7 @@ import lombok.SneakyThrows;
class XtaClientITCase { class XtaClientITCase {
@RegisterExtension @RegisterExtension
static final XtaTestServerSetupExtension XTA_TEST_SERVER_SETUP_EXTENSION = new XtaTestServerSetupExtension(); private static final XtaTestServerSetupExtension XTA_TEST_SERVER_SETUP_EXTENSION = new XtaTestServerSetupExtension();
static final int TWO_MAX_LIST_ITEMS = 2; static final int TWO_MAX_LIST_ITEMS = 2;
private XtaClient silentTestClient; private XtaClient silentTestClient;
......
...@@ -11,7 +11,6 @@ import java.util.function.Consumer; ...@@ -11,7 +11,6 @@ import java.util.function.Consumer;
import java.util.function.Predicate; import java.util.function.Predicate;
import java.util.stream.Stream; import java.util.stream.Stream;
import org.junit.Ignore;
import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.DisplayName;
...@@ -44,11 +43,10 @@ import lombok.extern.slf4j.Slf4j; ...@@ -44,11 +43,10 @@ import lombok.extern.slf4j.Slf4j;
"This test requires the path KOP_SH_KIEL_{DEV,TEST}_PATH and password KOP_SH_KIEL_{DEV,TEST}_PASSWORD of KOP_SH_KIEL_DEV.p12 and OZG-CLOUD_SH_KIEL_TEST.pfx. " "This test requires the path KOP_SH_KIEL_{DEV,TEST}_PATH and password KOP_SH_KIEL_{DEV,TEST}_PASSWORD of KOP_SH_KIEL_DEV.p12 and OZG-CLOUD_SH_KIEL_TEST.pfx. "
+ "Additionally, the endpoint of the DEV-xta-server at li33-0005.dp.dsecurecloud.de must be reachable." + "Additionally, the endpoint of the DEV-xta-server at li33-0005.dp.dsecurecloud.de must be reachable."
) )
@Ignore
class XtaClientRemoteITCase { class XtaClientRemoteITCase {
@RegisterExtension @RegisterExtension
static final XtaRemoteServerSetupExtension XTA_REMOTE_SERVER_SETUP_EXTENSION = new XtaRemoteServerSetupExtension(); private static final XtaRemoteServerSetupExtension XTA_REMOTE_SERVER_SETUP_EXTENSION = new XtaRemoteServerSetupExtension();
private static final XdomeaXtaMessageCreator XDOMEA_XTA_MESSAGE_CREATOR = XdomeaXtaMessageCreator.createInstance(); private static final XdomeaXtaMessageCreator XDOMEA_XTA_MESSAGE_CREATOR = XdomeaXtaMessageCreator.createInstance();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment