minor dependency updates

This commit is contained in:
Stefan Kalscheuer 2019-07-26 20:02:14 +02:00
parent e20baf7b11
commit 71902b072b
2 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,11 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## unreleased
### Security
* Updated dependencies
## 1.2.0 - 2019-06-20 ## 1.2.0 - 2019-06-20
### Security ### Security
* Updated dependencies * Updated dependencies
@ -8,6 +13,7 @@ All notable changes to this project will be documented in this file.
### Features ### Features
* Added support for stream API with asynchronous reader, using `getTripsStream()` method (#1) * Added support for stream API with asynchronous reader, using `getTripsStream()` method (#1)
## 1.1.4 - 2018-11-19 ## 1.1.4 - 2018-11-19
### Fixed ### Fixed
* Fixed issue with direction ID as `String` instead if `Integer` (#2) * Fixed issue with direction ID as `String` instead if `Integer` (#2)

10
pom.xml
View File

@ -6,7 +6,7 @@
<groupId>de.stklcode.pubtrans</groupId> <groupId>de.stklcode.pubtrans</groupId>
<artifactId>juraclient</artifactId> <artifactId>juraclient</artifactId>
<version>1.2.0</version> <version>1.2.1-SNAPSHOT</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -55,12 +55,12 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
<version>2.9.9</version> <version>2.9.9.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version> <version>5.5.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -72,13 +72,13 @@
<dependency> <dependency>
<groupId>net.bytebuddy</groupId> <groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId> <artifactId>byte-buddy</artifactId>
<version>1.9.13</version> <version>1.9.15</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.bytebuddy</groupId> <groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId> <artifactId>byte-buddy-agent</artifactId>
<version>1.9.13</version> <version>1.9.15</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>