Skip to content

Commit

Permalink
Updated deps
Browse files Browse the repository at this point in the history
Took 1 hour 28 minutes
  • Loading branch information
thorsten-p-weber committed Apr 3, 2019
1 parent 4ab0ddc commit 2029b40
Showing 1 changed file with 77 additions and 28 deletions.
105 changes: 77 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,22 +71,49 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-security.version>5.1.4.RELEASE</spring-security.version>
<spring.version>5.1.5.RELEASE</spring.version>
<spring-security.version>5.1.5.RELEASE</spring-security.version>
<spring.version>5.1.6.RELEASE</spring.version>
<jackson.version>2.9.8</jackson.version>
<immutables.version>2.7.5</immutables.version>
<lombok.version>1.18.6</lombok.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<vavr-encodings.version>0.6.0</vavr-encodings.version>
<default-immutables.version>1.2.5</default-immutables.version>
<java-jwt.version>3.8.0</java-jwt.version>
<jwks-rsa.version>0.7.0</jwks-rsa.version>
<vavr.version>0.10.0</vavr.version>
<slf4j-api.version>1.7.25</slf4j-api.version>
<jaxb-api.version>2.3.1</jaxb-api.version>
<!-- test -->
<junit.version>4.12</junit.version>
<assertj-core.version>3.12.2</assertj-core.version>
<mockito-core.version>2.25.1</mockito-core.version>
<bcprov-jdk15on.version>1.61</bcprov-jdk15on.version>
<logback-classic.version>1.2.3</logback-classic.version>
<!-- plugin -->
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
<maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version>
<maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
<dependency-check-maven.version>4.0.2</dependency-check-maven.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>${maven-release-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
Expand All @@ -100,9 +127,31 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>

<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency-check-maven.version}</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>true</failOnError>
<failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
<skipRuntimeScope>true</skipRuntimeScope>
<skipProvidedScope>true</skipProvidedScope>
<skipTestScope>true</skipTestScope>
<skipSystemScope>true</skipSystemScope>
</configuration>
</plugin>

<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -115,7 +164,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -132,7 +181,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<version>${maven-jar-plugin.version}</version>
<executions>
<execution>
<goals>
Expand All @@ -144,7 +193,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -157,19 +206,19 @@
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<version>${coveralls-maven-plugin.version}</version>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
<version>${jaxb-api.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<excludes>
<exclude>**/*ITest.java</exclude>
Expand All @@ -179,7 +228,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.1</version>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<goals>
Expand All @@ -196,7 +245,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<version>${maven-shade-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -221,13 +270,13 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.6</version>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<version>${javax.servlet-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -244,7 +293,7 @@
<dependency>
<groupId>org.immutables.vavr</groupId>
<artifactId>vavr-encodings</artifactId>
<version>0.6.0</version>
<version>${vavr-encodings.version}</version>
<exclusions>
<exclusion>
<artifactId>value</artifactId>
Expand All @@ -259,7 +308,7 @@
<dependency>
<groupId>com.mercateo</groupId>
<artifactId>default-immutables</artifactId>
<version>1.2.5</version>
<version>${default-immutables.version}</version>
<exclusions>
<exclusion>
<artifactId>value</artifactId>
Expand Down Expand Up @@ -311,46 +360,46 @@
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.7.0</version>
<version>${java-jwt.version}</version>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>jwks-rsa</artifactId>
<version>0.7.0</version>
<version>${jwks-rsa.version}</version>
</dependency>
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>0.10.0</version>
<version>${vavr.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>${slf4j-api.version}</version>
</dependency>

<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.12.0</version>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.24.5</version>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.61</version>
<version>${bcprov-jdk15on.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -374,13 +423,13 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<version>${logback-classic.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.25</version>
<version>${slf4j-api.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 2029b40

Please sign in to comment.