Skip to content

Commit 73de99d

Browse files
authored
feat: update dependencies & plugins (#124)
1 parent dd18ba7 commit 73de99d

File tree

7 files changed

+22
-16
lines changed

7 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## 1.10.0 [unreleased]
22

3+
### Dependencies
4+
5+
1. [#124](https://github.com/influxdata/influxdb-client-java/pull/124): Update dependencies: akka: 2.6.6, commons-io: 2.7, spring: 5.2.7.RELEASE, retrofit: 2.9.0, okhttp3: 4.7.2
6+
1. [#124](https://github.com/influxdata/influxdb-client-java/pull/124): Update plugins: maven-project-info-reports-plugin: 3.1.0, dokka-maven-plugin: 0.10.1, scoverage-maven-plugin: 1.4.1
7+
38
## 1.9.0 [2020-06-19]
49

510
### Features

client-kotlin/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>org.jetbrains.dokka</groupId>
109109
<artifactId>dokka-maven-plugin</artifactId>
110-
<version>0.9.17</version>
110+
<version>0.10.1</version>
111111
<executions>
112112
<execution>
113113
<id>dokka-pre-site</id>
@@ -123,16 +123,16 @@
123123
<goal>dokka</goal>
124124
<goal>javadoc</goal>
125125
<goal>javadocJar</goal>
126-
</goals> </execution>
126+
</goals>
127+
</execution>
127128
</executions>
128129
<configuration>
129130
<skip>${maven.dokka.skip}</skip>
130131
<sourceLinks>
131132
<link>
132-
<dir>${project.basedir}</dir>
133-
<url>https://github.com/influxdata/influxdb-client-java/tree/master/client-kotlin
134-
</url>
135-
<urlSuffix>#L</urlSuffix>
133+
<path>${project.basedir}</path>
134+
<url>https://github.com/influxdata/influxdb-client-java/tree/master/client-kotlin</url>
135+
<lineSuffix>#L</lineSuffix>
136136
</link>
137137
</sourceLinks>
138138
</configuration>

client-scala/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
</scm>
7272

7373
<properties>
74-
<scoverage-maven-plugin.version>1.3.0</scoverage-maven-plugin.version>
75-
<akka.version>2.6.5</akka.version>
74+
<scoverage-maven-plugin.version>1.4.1</scoverage-maven-plugin.version>
75+
<akka.version>2.6.6</akka.version>
7676
</properties>
7777

7878
<build>
@@ -230,7 +230,7 @@
230230
<dependency>
231231
<groupId>org.scalatest</groupId>
232232
<artifactId>scalatest_2.13</artifactId>
233-
<version>3.1.2</version>
233+
<version>3.2.0</version>
234234
<scope>test</scope>
235235
</dependency>
236236

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
<dependency>
159159
<groupId>commons-io</groupId>
160160
<artifactId>commons-io</artifactId>
161-
<version>2.6</version>
161+
<version>2.7</version>
162162
</dependency>
163163
</dependencies>
164164

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@
104104
<properties>
105105
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
106106

107-
<dependency.retrofit.version>2.8.1</dependency.retrofit.version>
108-
<dependency.okhttp3.version>4.6.0</dependency.okhttp3.version>
107+
<dependency.retrofit.version>2.9.0</dependency.retrofit.version>
108+
<dependency.okhttp3.version>4.7.2</dependency.okhttp3.version>
109109

110110
<plugin.surefire.version>2.22.2</plugin.surefire.version>
111111
<plugin.javadoc.version>3.2.0</plugin.javadoc.version>
@@ -377,7 +377,7 @@
377377
<plugin>
378378
<groupId>org.apache.maven.plugins</groupId>
379379
<artifactId>maven-project-info-reports-plugin</artifactId>
380-
<version>3.0.0</version>
380+
<version>3.1.0</version>
381381
<configuration>
382382
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
383383
</configuration>
@@ -547,7 +547,7 @@
547547
<dependency>
548548
<groupId>org.json</groupId>
549549
<artifactId>json</artifactId>
550-
<version>20190722</version>
550+
<version>20200518</version>
551551
</dependency>
552552

553553
<dependency>
@@ -589,7 +589,7 @@
589589
<dependency>
590590
<groupId>org.jetbrains.kotlinx</groupId>
591591
<artifactId>kotlinx-coroutines-core</artifactId>
592-
<version>1.3.6</version>
592+
<version>1.3.7</version>
593593
</dependency>
594594

595595
</dependencies>

scripts/maven-version-rules.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<ignoreVersion type="regex">(?i).*CR(?:-?\d+)?</ignoreVersion>
3333
<ignoreVersion type="regex">(?i).*M(?:-?\d+)?</ignoreVersion>
3434
<ignoreVersion type="regex">(?i).*SNAP(?:-?\d+)?</ignoreVersion>
35+
<ignoreVersion type="regex">.*[-_\.](alpha|Alpha|ALPHA|beta|Beta|BETA|rc|‌​RC)[-_\.]?.*</ignoreVersion>
3536
</ignoreVersions>
3637
<rules>
3738
</rules>

spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<properties>
7575
<micrometer.version>1.2.0-bonitoo-SNAPSHOT</micrometer.version>
7676
<spring-boot.version>2.2.7.RELEASE</spring-boot.version>
77-
<spring.version>5.2.6.RELEASE</spring.version>
77+
<spring.version>5.2.7.RELEASE</spring.version>
7878
<mockito.version>2.25.1</mockito.version>
7979
</properties>
8080

0 commit comments

Comments
 (0)