Merge "Use managed guava version"
authorDan Timoney <dt5972@att.com>
Tue, 4 Sep 2018 13:45:09 +0000 (13:45 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 4 Sep 2018 13:45:09 +0000 (13:45 +0000)
1  2 
ms/blueprintsprocessor/parent/pom.xml
ms/controllerblueprints/parent/pom.xml

@@@ -2,8 -2,6 +2,8 @@@
  <!--
    ~  Copyright © 2017-2018 AT&T Intellectual Property.
    ~
 +  ~  Modifications Copyright © 2018 IBM.
 +  ~
    ~  Licensed under the Apache License, Version 2.0 (the "License");
    ~  you may not use this file except in compliance with the License.
    ~  You may obtain a copy of the License at
@@@ -16,8 -14,7 +16,7 @@@
    ~  See the License for the specific language governing permissions and
    ~  limitations under the License.
    -->
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
          <groupId>org.onap.ccsdk.apps</groupId>
              <dependency>
                  <groupId>com.google.guava</groupId>
                  <artifactId>guava</artifactId>
-                 <version>25.1-jre</version>
              </dependency>
  
              <!-- Database -->
                  <version>${h2database.version}</version>
              </dependency>
              <!-- Test Dependency -->
 +            <dependency>
 +                <groupId>org.powermock</groupId>
 +                <artifactId>powermock-api-mockito2</artifactId>
 +                <version>1.7.4</version>
 +                <scope>test</scope>
 +            </dependency>
              <dependency>
                  <groupId>org.jetbrains.kotlin</groupId>
                  <artifactId>kotlin-test</artifactId>
          </dependencies>
      </dependencyManagement>
      <dependencies>
 -        <dependency>
 -            <groupId>org.apache.commons</groupId>
 -            <artifactId>commons-lang3</artifactId>
 -        </dependency>
 -        <dependency>
 -            <groupId>commons-collections</groupId>
 -            <artifactId>commons-collections</artifactId>
 -        </dependency>
 -        <dependency>
 -            <groupId>commons-io</groupId>
 -            <artifactId>commons-io</artifactId>
 -        </dependency>
 -        <dependency>
 -            <groupId>org.apache.velocity</groupId>
 -            <artifactId>velocity</artifactId>
 -        </dependency>
  
 +        <!-- Application Component Dependency -->
          <dependency>
 -            <groupId>io.springfox</groupId>
 -            <artifactId>springfox-swagger2</artifactId>
 -        </dependency>
 -        <dependency>
 -            <groupId>io.springfox</groupId>
 -            <artifactId>springfox-swagger-ui</artifactId>
 -        </dependency>
 -
 -        <dependency>
 -            <groupId>org.springframework.boot</groupId>
 -            <artifactId>spring-boot-starter-test</artifactId>
 -            <scope>test</scope>
 -        </dependency>
 -        <dependency>
 -            <groupId>org.jetbrains.kotlin</groupId>
 -            <artifactId>kotlin-test</artifactId>
 -            <version>${kotlin.version}</version>
 -            <scope>test</scope>
 -        </dependency>
 -        <dependency>
 -            <groupId>io.projectreactor</groupId>
 -            <artifactId>reactor-test</artifactId>
 -            <scope>test</scope>
 -        </dependency>
 -        <dependency>
 -            <groupId>org.jetbrains.kotlin</groupId>
 -            <artifactId>kotlin-stdlib-jdk8</artifactId>
 -            <version>${kotlin.version}</version>
 +            <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
 +            <artifactId>resource-dict</artifactId>
          </dependency>
      </dependencies>
      <build>
@@@ -2,8 -2,6 +2,8 @@@
  <!--
    ~ Copyright © 2017-2018 AT&T Intellectual Property.
    ~
 +  ~ Modifications Copyright © 2018 IBM.
 +  ~
    ~ Licensed under the Apache License, Version 2.0 (the "License");
    ~ you may not use this file except in compliance with the License.
    ~ You may obtain a copy of the License at
    ~ See the License for the specific language governing permissions and
    ~ limitations under the License.
    -->
- <project
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-         xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
          <groupId>org.onap.ccsdk.apps</groupId>
@@@ -91,7 -85,7 +87,7 @@@
              <dependency>
                  <groupId>com.google.guava</groupId>
                  <artifactId>guava</artifactId>
-                 <version>25.1-jre</version>
              </dependency>
  
              <!-- Kotlin Dependencies -->
                  <artifactId>h2</artifactId>
                  <version>${h2database.version}</version>
              </dependency>
 -            <dependency>
 -                <groupId>org.jetbrains.kotlin</groupId>
 -                <artifactId>kotlin-test</artifactId>
 -                <version>${kotlin.version}</version>
 -                <scope>test</scope>
 -            </dependency>
 +
  
              <!-- Application Components -->
              <dependency>
                  <artifactId>resource-dict</artifactId>
                  <version>${project.version}</version>
              </dependency>
 +
 +            <!-- Testing Dependencies -->
 +            <dependency>
 +                <groupId>org.powermock</groupId>
 +                <artifactId>powermock-api-mockito2</artifactId>
 +                <version>1.7.4</version>
 +                <scope>test</scope>
 +            </dependency>
 +            <dependency>
 +                <groupId>org.jetbrains.kotlin</groupId>
 +                <artifactId>kotlin-test</artifactId>
 +                <version>${kotlin.version}</version>
 +                <scope>test</scope>
 +            </dependency>
          </dependencies>
      </dependencyManagement>
  
              <groupId>com.fasterxml.jackson.module</groupId>
              <artifactId>jackson-module-kotlin</artifactId>
          </dependency>
 -        <!-- test -->
 -        <dependency>
 -            <groupId>junit</groupId>
 -            <artifactId>junit</artifactId>
 -            <scope>test</scope>
 -        </dependency>
 -        <dependency>
 -            <groupId>org.jetbrains.kotlin</groupId>
 -            <artifactId>kotlin-test</artifactId>
 -            <scope>test</scope>
 -        </dependency>
 -        <dependency>
 -            <groupId>io.projectreactor</groupId>
 -            <artifactId>reactor-test</artifactId>
 -            <scope>test</scope>
 -        </dependency>
      </dependencies>
  
 -
      <build>
          <plugins>
              <plugin>