Skip to content

Commit d9cc335

Browse files
authored
Merge pull request #33 from javadev/improved-dependency
Fixed transient dependencies for okhttp
2 parents 670bcea + 897291f commit d9cc335

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.8.8
2+
* Fixed transient dependencies for okhttp
3+
14
## 1.8.7
25
* Fixed Import-Package manifest for OSGI deployments
36

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Install the API client via Maven:
1818
<dependency>
1919
<groupId>com.tinify</groupId>
2020
<artifactId>tinify</artifactId>
21-
<version>1.8.7</version>
21+
<version>1.8.8</version>
2222
</dependency>
2323
```
2424

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.tinify</groupId>
55
<artifactId>tinify</artifactId>
6-
<version>1.8.7</version>
6+
<version>1.8.8</version>
77
<name>Tinify</name>
88
<description>Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.</description>
99
<url>https://tinify.com</url>
@@ -143,6 +143,12 @@
143143
<artifactId>okhttp</artifactId>
144144
<version>${okhttp.version}</version>
145145
<scope>compile</scope>
146+
<exclusions>
147+
<exclusion>
148+
<groupId>org.jetbrains.kotlin</groupId>
149+
<artifactId>kotlin-stdlib-jdk8</artifactId>
150+
</exclusion>
151+
</exclusions>
146152
</dependency>
147153
<dependency>
148154
<groupId>com.squareup.okio</groupId>
@@ -274,6 +280,11 @@
274280
</instructions>
275281
</configuration>
276282
</plugin>
283+
<plugin>
284+
<groupId>org.apache.maven.plugins</groupId>
285+
<artifactId>maven-dependency-plugin</artifactId>
286+
<version>3.6.1</version>
287+
</plugin>
277288
</plugins>
278289
</build>
279290
</project>

0 commit comments

Comments
 (0)