Skip to content
This repository has been archived by the owner on May 14, 2021. It is now read-only.

Commit

Permalink
MINIFI-507 - Upgraded jetty, jackson-databind, zookeeper, h2database,…
Browse files Browse the repository at this point in the history
… spring and spring-security

MINIFI-507 - Upgrading jersey

MINIFI-507 - Updated okhttp, and in turn had to update the keystores and truststores to use a 'DNS:localhost' SAN in order for tests to pass.

This closes #169.

Signed-off-by: Aldrin Piri <[email protected]>
  • Loading branch information
thenatog authored and apiri committed Sep 29, 2019
1 parent 55aac22 commit bb40bc9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class PullHttpChangeIngestorSSLTest extends PullHttpChangeIngestorCommonT
public static void setUp() throws Exception {
PullHttpChangeIngestorCommonTest.init();

SslContextFactory ssl = new SslContextFactory();
SslContextFactory.Server ssl = new SslContextFactory.Server();

ssl.setKeyStorePath("./src/test/resources/localhost-ks.jks");
ssl.setKeyStorePassword("localtest");
Expand Down
Binary file modified minifi-bootstrap/src/test/resources/localhost-ks.jks
Binary file not shown.
Binary file modified minifi-bootstrap/src/test/resources/localhost-ts.jks
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ limitations under the License.
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
Expand All @@ -40,37 +40,37 @@ limitations under the License.
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jstl</artifactId>
<version>9.3.9.v20160517</version>
<version>${jetty.version}</version>

</dependency>
<dependency>
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ limitations under the License.
<org.slf4j.version>1.7.25</org.slf4j.version>
<org.apache.nifi.version>1.8.0</org.apache.nifi.version>
<logback.version>1.2.3</logback.version>
<jetty.version>9.4.11.v20180605</jetty.version>
<jersey.version>2.26</jersey.version>
<jetty.version>9.4.19.v20190610</jetty.version>
<jersey.version>2.29</jersey.version>
<yammer.metrics.version>2.2.0</yammer.metrics.version>
<spring.version>4.3.10.RELEASE</spring.version>
<spring.security.version>4.2.4.RELEASE</spring.security.version>
<spring.version>4.3.25.RELEASE</spring.version>
<spring.security.version>4.2.13.RELEASE</spring.security.version>
<system.rules.version>1.16.1</system.rules.version>
<aws.sdk.version>1.11.172</aws.sdk.version>
</properties>
Expand Down Expand Up @@ -636,7 +636,7 @@ limitations under the License.
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.4.1</version>
<version>3.12.3</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -1074,7 +1074,7 @@ limitations under the License.
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.176</version>
<version>1.4.199</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
Expand All @@ -1084,7 +1084,7 @@ limitations under the License.
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.7</version>
<version>2.9.9.3</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand All @@ -1094,7 +1094,7 @@ limitations under the License.
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.4.6</version>
<version>3.5.5</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
Expand Down

0 comments on commit bb40bc9

Please sign in to comment.