Skip to content

Commit

Permalink
Merge pull request #33 from javadev/improved-dependency
Browse files Browse the repository at this point in the history
Fixed transient dependencies for okhttp
  • Loading branch information
rkoopmans authored Jan 25, 2024
2 parents 670bcea + 897291f commit d9cc335
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.8.8
* Fixed transient dependencies for okhttp

## 1.8.7
* Fixed Import-Package manifest for OSGI deployments

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Install the API client via Maven:
<dependency>
<groupId>com.tinify</groupId>
<artifactId>tinify</artifactId>
<version>1.8.7</version>
<version>1.8.8</version>
</dependency>
```

Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.tinify</groupId>
<artifactId>tinify</artifactId>
<version>1.8.7</version>
<version>1.8.8</version>
<name>Tinify</name>
<description>Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.</description>
<url>https://tinify.com</url>
Expand Down Expand Up @@ -143,6 +143,12 @@
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
Expand Down Expand Up @@ -274,6 +280,11 @@
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.1</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d9cc335

Please sign in to comment.