diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-08-04 14:16:00 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-09-08 13:45:31 +0200 |
commit | 30670accb070b20c1c770d1ebbd6d72e24fee2db (patch) | |
tree | 8ddb5d70500aa1b3baa4e262de411e8394e22e6a /common-app-api/pom.xml | |
parent | a8a96339680fa1c4df5577285442e902b5637631 (diff) |
Upgrade to java 11
MOve SDC to Java 11, this is one of the PR to move to Jdk 11, jenkins will have to be changed as well
Issue-ID: SDC-2725
Change-Id: I85f13f14ba8004f6e9656093a837465a2e4af3e1
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Signed-off-by: xuegao <xg353y@intl.att.com>
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'common-app-api/pom.xml')
-rw-r--r-- | common-app-api/pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/common-app-api/pom.xml b/common-app-api/pom.xml index 39be0353af..ee5f412249 100644 --- a/common-app-api/pom.xml +++ b/common-app-api/pom.xml @@ -268,6 +268,31 @@ </dependencies> <build> + <testResources> + <testResource> + <directory>src/test/resources</directory> + <excludes> + <exclude>**/*.zip</exclude> + </excludes> + <filtering>true</filtering> + </testResource> + <testResource> + <directory>src/test/resources/zip</directory> + <includes> + <include>**.zip</include> + </includes> + <filtering>false</filtering> + <targetPath>zip</targetPath> + </testResource> + <testResource> + <directory>src/test/resources/zip-slip</directory> + <includes> + <include>**.zip</include> + </includes> + <filtering>false</filtering> + <targetPath>zip-slip</targetPath> + </testResource> + </testResources> <plugins> <plugin> <groupId>com.github.sylvainlaurent.maven</groupId> |