Skip to content

Commit

Permalink
chore (deps) : Update Jnr Jffi dependency to v1.3.11 (#1660)
Browse files Browse the repository at this point in the history
Use our own latest version of `com.github.jnr:jffi` dependency

Signed-off-by: Rohan Kumar <rohaan@redhat.com>
  • Loading branch information
rohanKanojia committed Apr 2, 2023
1 parent c1f1080 commit b08e932
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ChangeLog
* **0.43-SNAPSHOT** :
- Update Jnr Jffi dependency to v1.3.11 ([1660](https://github.com/fabric8io/docker-maven-plugin/issues/1660)) @rohanKanojia

* **0.42.0** (2023-02-28):
- Support `docker run --platform` ([1641](https://github.com/fabric8io/docker-maven-plugin/issues/1641)) @chonton
Expand Down
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
<byte-buddy.version>1.12.10</byte-buddy.version>
<httpclient.version>4.5.13</httpclient.version>
<jib-core.version>0.23.0</jib-core.version>
<jnr-jffi.version>1.3.11</jnr-jffi.version>
<jnr-unixsocket.version>0.38.19</jnr-unixsocket.version>
<junit.jupiter.version>5.8.2</junit.jupiter.version>
<maven.version>3.3.9</maven.version>
<mockito.version>4.5.1</mockito.version>
Expand All @@ -86,7 +88,26 @@
<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-unixsocket</artifactId>
<version>0.38.19</version>
<version>${jnr-unixsocket.version}</version>
<exclusions>
<exclusion>
<groupId>com.github.jnr</groupId>
<artifactId>jffi</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jffi</artifactId>
<version>${jnr-jffi.version}</version>
</dependency>

<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jffi</artifactId>
<version>${jnr-jffi.version}</version>
<classifier>native</classifier>
</dependency>

<dependency>
Expand Down

0 comments on commit b08e932

Please sign in to comment.