diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-02-11 12:42:11 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-02-11 12:51:16 +0000 |
commit | 0521914ddcde7727ed2dfeafc8bf666ceffd56f3 (patch) | |
tree | 59417122dbf5907ffa48cd493ed9badcf0e9e7d1 /controlloop/common/actors | |
parent | c735d07da356a21791abbf3d511e997c7d53b987 (diff) |
Tidy dependencies and scopes in POMs
There were some duplicate dependencies in the POMs that were causing warnings.
These have been removed. In cases where the revision of the duplicate
dependencies were different,the latest revision was used.
The scope of the "junit" dependency was "provided" in some POMs. These have been
corrected with the scope of "test" being used for junit dependencies.
Issue-ID: POLICY-238
Change-Id: Ib1cc6f040b0c4d7f2b39ae02bc6fb4590d395809
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'controlloop/common/actors')
-rw-r--r-- | controlloop/common/actors/actor.test/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controlloop/common/actors/actor.test/pom.xml b/controlloop/common/actors/actor.test/pom.xml index 696ef3ff5..27cb0290d 100644 --- a/controlloop/common/actors/actor.test/pom.xml +++ b/controlloop/common/actors/actor.test/pom.xml @@ -58,7 +58,7 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> - <scope>provided</scope> + <scope>test</scope> </dependency> </dependencies> </project> |