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
All notable changes to this project will be documented in this file.
## unreleased
### Security
* Updated dependencies
## 1.2.0 - 2019-06-20
### Security
* Updated dependencies
@ -8,6 +13,7 @@ All notable changes to this project will be documented in this file.
### Features
* Added support for stream API with asynchronous reader, using `getTripsStream()` method (#1)
## 1.1.4 - 2018-11-19
### Fixed
* 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>
<artifactId>juraclient</artifactId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -55,12 +55,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
<version>2.9.9.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
@ -72,13 +72,13 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.9.13</version>
<version>1.9.15</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.9.13</version>
<version>1.9.15</version>
<scope>test</scope>
</dependency>
</dependencies>