diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2022-03-10 10:49:49 +0000 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2022-03-15 09:38:56 +0000 |
commit | cb96f235f1fda8b2fd76289292eb4dbd9ac58bec (patch) | |
tree | eb091341d2affffa888cd875d78000ace5745b5d /models/pom.xml | |
parent | 9d5afb3b5325f166a8ac20d39705e22776f42f5b (diff) |
Clean up unit tests
- use the unified functional pmsh test case
- fix some sonar lint issues
Issue-ID: POLICY-3945
Change-Id: Ic49ea9494cde88a8e0d37260d1461b9775ec9ed5
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'models/pom.xml')
-rw-r--r-- | models/pom.xml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/models/pom.xml b/models/pom.xml index ad70f4f64..71fbdb15d 100644 --- a/models/pom.xml +++ b/models/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- ============LICENSE_START======================================================= - Copyright (C) 2021 Nordix Foundation. + Copyright (C) 2021-2022 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -41,4 +41,25 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <version>1.7.0</version> + <configuration> + <resourceBundles> + <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle> + </resourceBundles> + </configuration> + <executions> + <execution> + <goals> + <goal>process</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |