Skip to content

Commit

Permalink
[issue 153] - Unrelated - Fixing file format
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiobrz committed Mar 5, 2024
1 parent f3c5eaf commit c43f1b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,19 @@ enum SupportedApplication {
PostgreSQLImageOpenShiftProvisioner.class),
PostgreSQLTemplateOpenShiftApplication(
getApplicationMock(org.jboss.intersmash.application.openshift.PostgreSQLTemplateOpenShiftApplication.class,
(application) -> when(((org.jboss.intersmash.application.openshift.PostgreSQLTemplateOpenShiftApplication) application).getTemplate())
.thenReturn(org.jboss.intersmash.application.openshift.template.PostgreSQLTemplate.POSTGRESQL_PERSISTENT)),
(application) -> when(
((org.jboss.intersmash.application.openshift.PostgreSQLTemplateOpenShiftApplication) application)
.getTemplate())
.thenReturn(
org.jboss.intersmash.application.openshift.template.PostgreSQLTemplate.POSTGRESQL_PERSISTENT)),
PostgreSQLTemplateOpenShiftProvisioner.class),
RhSsoOperatorApplication(getApplicationMock(org.jboss.intersmash.application.openshift.RhSsoOperatorApplication.class),
RhSsoOperatorProvisioner.class),
RhSsoTemplateOpenShiftApplication(
getApplicationMock(org.jboss.intersmash.application.openshift.RhSsoTemplateOpenShiftApplication.class,
(application) -> when(((org.jboss.intersmash.application.openshift.RhSsoTemplateOpenShiftApplication) application).getTemplate())
(application) -> when(
((org.jboss.intersmash.application.openshift.RhSsoTemplateOpenShiftApplication) application)
.getTemplate())
.thenReturn(org.jboss.intersmash.application.openshift.template.RhSsoTemplate.X509_HTTPS)),
RhSsoTemplateOpenShiftProvisioner.class),
WildflyImageOpenShiftApplication(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void method1(SystemProperties properties) {
properties.set("wildfly.ee-feature-pack.location", "org.wildfly:wildfly-ee-galleon-pack:30.0.0.Final");
properties.set("wildfly.feature-pack.location", "org.wildfly:wildfly-galleon-pack:30.0.0.Final");
properties.set("wildfly.cloud-feature-pack.location", "org.wildfly.cloud:wildfly-cloud-galleon-pack:5.0.1.Final");
properties.set("wildfly.datasources-feature-pack.location", "6.0.0.Final");
properties.set("wildfly.datasources-feature-pack.location", "org.wildfly:wildfly-datasources-galleon-pack:6.0.0.Final");
properties.set("wildfly.keycloak-saml-adapter-feature-pack.version", "22.0.3");
properties.set("wildfly.ee-channel.groupId", "wildfly.ee-channel.groupId.NONE_FOR_WILDFLY");
properties.set("wildfly.ee-channel.artifactId", "wildfly.ee-channel.artifactId.NONE_FOR_WILDFLY");
Expand Down

0 comments on commit c43f1b3

Please sign in to comment.