Skip to content

Commit 6fd21e2

Browse files
committed
update dependencies
1 parent afef896 commit 6fd21e2

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 2.0.1 - 2021-10-02
5+
### Security
6+
* Updated dependencies
7+
8+
### Improvement
9+
* Built and tested with JDK 17
10+
411
## 2.0.0 - 2021-01-30
512
### Breaking
613
* Java 11 or later required

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>de.stklcode.pubtrans</groupId>
88
<artifactId>juraclient</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -22,7 +22,7 @@
2222
<licenses>
2323
<license>
2424
<name>Apache License 2.0</name>
25-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
25+
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
2626
<distribution>repo</distribution>
2727
</license>
2828
</licenses>
@@ -50,13 +50,13 @@
5050
<dependency>
5151
<groupId>com.fasterxml.jackson.core</groupId>
5252
<artifactId>jackson-databind</artifactId>
53-
<version>2.12.1</version>
53+
<version>2.13.0</version>
5454
</dependency>
5555

5656
<dependency>
5757
<groupId>org.junit.jupiter</groupId>
5858
<artifactId>junit-jupiter</artifactId>
59-
<version>5.7.0</version>
59+
<version>5.8.1</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
@@ -78,7 +78,7 @@
7878
<dependency>
7979
<groupId>org.sonarsource.scanner.maven</groupId>
8080
<artifactId>sonar-maven-plugin</artifactId>
81-
<version>3.8.0.2131</version>
81+
<version>3.9.0.2155</version>
8282
</dependency>
8383
</dependencies>
8484
</dependencyManagement>
@@ -121,7 +121,7 @@
121121
<plugin>
122122
<groupId>org.jacoco</groupId>
123123
<artifactId>jacoco-maven-plugin</artifactId>
124-
<version>0.8.6</version>
124+
<version>0.8.7</version>
125125
<executions>
126126
<execution>
127127
<id>prepare-agent</id>
@@ -176,7 +176,7 @@
176176
<plugin>
177177
<groupId>org.apache.maven.plugins</groupId>
178178
<artifactId>maven-javadoc-plugin</artifactId>
179-
<version>3.2.0</version>
179+
<version>3.3.1</version>
180180
<configuration>
181181
<overview>${basedir}/src/main/javadoc/overview.html</overview>
182182
<source>11</source>
@@ -201,7 +201,7 @@
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-gpg-plugin</artifactId>
204-
<version>1.6</version>
204+
<version>3.0.1</version>
205205
<executions>
206206
<execution>
207207
<id>sign-artifacts</id>

src/main/java/de/stklcode/pubtrans/ura/UraClientConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.time.Duration;
55

66
/**
7-
* Configurstion Object for the {@link UraClient}.
7+
* Configuration Object for the {@link UraClient}.
88
*
99
* @author Stefan Kalscheuer
1010
* @since 2.0

0 commit comments

Comments
 (0)