Fix POMs 83/48183/2
authorIanHowell <ian.howell@att.com>
Fri, 18 May 2018 14:29:09 +0000 (09:29 -0500)
committerJonathan Gathman <jonathan.gathman@att.com>
Fri, 18 May 2018 17:56:56 +0000 (17:56 +0000)
Issue-ID: AAF-225
Change-Id: I02140ea61604b5224477fe29114f89ffcd75086e
Signed-off-by: IanHowell <ian.howell@att.com>
auth/auth-certman/pom.xml
auth/pom.xml

index 69a5c5d..10a3bb0 100644 (file)
@@ -42,6 +42,7 @@
                <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
                <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
                <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
+               <project.bouncyCastleVersion>1.59</project.bouncyCastleVersion>
        </properties>
 
        <dependencies>
                <dependency>
                  <groupId>org.bouncycastle</groupId>
                  <artifactId>bcprov-jdk15on</artifactId>
-                 <version>1.59</version>
+                 <version>${project.bouncyCastleVersion}</version>
                </dependency>
                <dependency>
                        <groupId>org.bouncycastle</groupId>
                        <artifactId>bcpkix-jdk15on</artifactId>
-                       <version>1.59</version>
+                       <version>${project.bouncyCastleVersion}</version>
                </dependency>
        </dependencies>
 
index 777480e..c3726b5 100644 (file)
                <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
                <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
                <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
+               <!-- We have to up these versions from the original to avoid Security Errors -->
+               <project.cassVersion>3.4.0</project.cassVersion>
+               <project.nettyVersion>4.1.22.Final</project.nettyVersion>
+               <!--
+               <project.cassVersion>3.3.0</project.cassVersion>
+               <project.nettyVersion>4.0.47.Final</project.nettyVersion> -->
        </properties>
 
        <developers>
                        <dependency>
                                <groupId>com.datastax.cassandra</groupId>
                                <artifactId>cassandra-all</artifactId>
-                               <version>3.3.0</version>
+                               <version>${project.cassVersion}</version>
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.slf4j</groupId>
                        <dependency>
                                <groupId>com.datastax.cassandra</groupId>
                                <artifactId>cassandra-driver-core</artifactId>
-                               <version>3.4.0</version>
+                               <version>${project.cassVersion}</version>
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.slf4j</groupId>
                        <dependency>
                                  <groupId>io.netty</groupId>
                                  <artifactId>netty-handler</artifactId>
-                                 <version>4.1.22.Final</version>
+                                 <version>${project.nettyVersion}</version>
                        </dependency>