diff options
author | andre.schmid <andre.schmid@est.tech> | 2022-09-14 16:24:24 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-09-16 08:58:25 +0000 |
commit | 209019beb8973f20233e6dbfbf94c7e5bf4dd9a0 (patch) | |
tree | 6201a5e5c62ccfd50f051ba74c8561362c20f680 /integration-tests | |
parent | 70c17bb345b6ed957290eec776c026d3a25f48a1 (diff) |
Fix filtering problem for plugins config file
The plugins-configuration.yaml file, for now, does not use no maven
variable. If it is filled with the expected YAML content, the filter
option will break the execution.
Change-Id: Ibf56a3962849dc25db4e0db1f1919a50650c6f2d
Issue-ID: SDC-4179
Signed-off-by: André Schmid <andre.schmid@est.tech>
Diffstat (limited to 'integration-tests')
-rw-r--r-- | integration-tests/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 175e45b19e..3896dbc79c 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -56,6 +56,7 @@ limitations under the License. <!-- parser--> <sdc-tosca-parser.version>1.7.0</sdc-tosca-parser.version> + <docker.showLogs>false</docker.showLogs> </properties> <dependencies> @@ -374,6 +375,12 @@ limitations under the License. <filtering>true</filtering> <includes> <include>integration-test.json</include> + </includes> + </resource> + <resource> + <directory>environments</directory> + <filtering>false</filtering> + <includes> <include>plugins-configuration.yaml</include> </includes> </resource> |