Skip to content

Commit

Permalink
fix: inconsistent dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Oct 6, 2023
1 parent 21a89d2 commit 07c4516
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Update dependencies:
- [#589](https://github.com/influxdata/influxdb-client-java/pull/589): `kotlin` to `1.8.22`
- [#592](https://github.com/influxdata/influxdb-client-java/pull/592): `akka` to `2.6.21`
- [#602](https://github.com/influxdata/influxdb-client-java/pull/602): `okio` to `3.4.0`
- [#613](https://github.com/influxdata/influxdb-client-java/pull/613): `kotlinx-coroutines` to `1.7.3`

#### Maven:
- [#569](https://github.com/influxdata/influxdb-client-java/pull/569): `maven-enforcer-plugin` to `3.3.0`
Expand Down
10 changes: 8 additions & 2 deletions client-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
</sourceLinks>
</configuration>
</plugin>

<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down Expand Up @@ -174,6 +174,12 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<exclusions>
<exclusion>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -225,4 +231,4 @@

</dependencies>

</project>
</project>

0 comments on commit 07c4516

Please sign in to comment.