Skip to content

Commit 9df296a

Browse files
authored
Merge pull request #29 from javadev/updated-plugins-okhttp
Updated maven plugins and okhttp
2 parents 3fb0594 + 7ab4c77 commit 9df296a

3 files changed

Lines changed: 23 additions & 8 deletions

File tree

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.8.4
2+
* Upgrade Okio to version 3.7.0.
3+
14
## 1.8.3
25
* Fix for requests with empty body
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.3</version>
21+
<version>1.8.4</version>
2222
</dependency>
2323
```
2424

pom.xml

Lines changed: 19 additions & 7 deletions
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.3</version>
6+
<version>1.8.4</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>
@@ -57,8 +57,9 @@
5757
<build>
5858
<plugins>
5959
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
6061
<artifactId>maven-source-plugin</artifactId>
61-
<version>3.0.1</version>
62+
<version>3.2.0</version>
6263
<executions>
6364
<execution>
6465
<id>attach-sources</id>
@@ -69,8 +70,9 @@
6970
</executions>
7071
</plugin>
7172
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
7274
<artifactId>maven-javadoc-plugin</artifactId>
73-
<version>3.1.0</version>
75+
<version>3.3.1</version>
7476
<executions>
7577
<execution>
7678
<id>attach-javadocs</id>
@@ -81,6 +83,7 @@
8183
</executions>
8284
</plugin>
8385
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
8487
<artifactId>maven-gpg-plugin</artifactId>
8588
<version>3.0.1</version>
8689
<executions>
@@ -108,8 +111,9 @@
108111
<build>
109112
<plugins>
110113
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
111115
<artifactId>maven-surefire-plugin</artifactId>
112-
<version>3.0.0-M5</version>
116+
<version>3.0.0</version>
113117
<configuration>
114118
<skip>true</skip>
115119
</configuration>
@@ -140,6 +144,12 @@
140144
<version>3.14.9</version>
141145
<scope>compile</scope>
142146
</dependency>
147+
<dependency>
148+
<groupId>com.squareup.okio</groupId>
149+
<artifactId>okio</artifactId>
150+
<version>3.7.0</version>
151+
<scope>compile</scope>
152+
</dependency>
143153
<dependency>
144154
<groupId>com.google.code.gson</groupId>
145155
<artifactId>gson</artifactId>
@@ -207,14 +217,15 @@
207217
<plugin>
208218
<groupId>org.apache.maven.plugins</groupId>
209219
<artifactId>maven-surefire-plugin</artifactId>
210-
<version>3.0.0-M5</version>
220+
<version>3.0.0</version>
211221
<configuration>
212222
<argLine>-javaagent:"${project.build.directory}/agents/jmockit-1.49.jar"</argLine>
213223
</configuration>
214224
</plugin>
215225
<plugin>
226+
<groupId>org.apache.maven.plugins</groupId>
216227
<artifactId>maven-compiler-plugin</artifactId>
217-
<version>3.8.1</version>
228+
<version>3.11.0</version>
218229
<configuration>
219230
<source>1.8</source>
220231
<target>1.8</target>
@@ -224,8 +235,9 @@
224235
</configuration>
225236
</plugin>
226237
<plugin>
238+
<groupId>org.apache.maven.plugins</groupId>
227239
<artifactId>maven-jar-plugin</artifactId>
228-
<version>3.2.0</version>
240+
<version>3.2.2</version>
229241
<configuration>
230242
<archive>
231243
<manifest>

0 commit comments

Comments
 (0)