Skip to content

Commit

Permalink
[issues-133] - (Unrelated) Updating a testsuite application descripto…
Browse files Browse the repository at this point in the history
…r in order to use the new MAVEN_S2I_ARTIFACT_DIRS s2i env var, see https://issues.redhat.com/browse/WFWIP-667
  • Loading branch information
fabiobrz committed Nov 22, 2024
1 parent 864c71d commit cd2cccc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ public List<EnvVar> getEnvVars() {
: " -Pts.wildfly.target-distribution."
+ TestDeploymentProperties.getWildflyDeploymentsBuildProfile()));
list.add(new EnvVarBuilder().withName("MAVEN_ARGS_APPEND").withValue(mavenAdditionalArgs).build());
list.add(new EnvVarBuilder().withName("ARTIFACT_DIR").withValue(deploymentRelativePath + "target").build());
list.add(new EnvVarBuilder().withName("MAVEN_S2I_ARTIFACT_DIRS").withValue(deploymentRelativePath + "target")
.build());

return Collections.unmodifiableList(list);
}
Expand Down

0 comments on commit cd2cccc

Please sign in to comment.