|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.tinify</groupId> |
5 | 5 | <artifactId>tinify</artifactId> |
6 | | - <version>1.8.3</version> |
| 6 | + <version>1.8.4</version> |
7 | 7 | <name>Tinify</name> |
8 | 8 | <description>Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.</description> |
9 | 9 | <url>https://tinify.com</url> |
|
57 | 57 | <build> |
58 | 58 | <plugins> |
59 | 59 | <plugin> |
| 60 | + <groupId>org.apache.maven.plugins</groupId> |
60 | 61 | <artifactId>maven-source-plugin</artifactId> |
61 | | - <version>3.0.1</version> |
| 62 | + <version>3.2.0</version> |
62 | 63 | <executions> |
63 | 64 | <execution> |
64 | 65 | <id>attach-sources</id> |
|
69 | 70 | </executions> |
70 | 71 | </plugin> |
71 | 72 | <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
72 | 74 | <artifactId>maven-javadoc-plugin</artifactId> |
73 | | - <version>3.1.0</version> |
| 75 | + <version>3.3.1</version> |
74 | 76 | <executions> |
75 | 77 | <execution> |
76 | 78 | <id>attach-javadocs</id> |
|
81 | 83 | </executions> |
82 | 84 | </plugin> |
83 | 85 | <plugin> |
| 86 | + <groupId>org.apache.maven.plugins</groupId> |
84 | 87 | <artifactId>maven-gpg-plugin</artifactId> |
85 | 88 | <version>3.0.1</version> |
86 | 89 | <executions> |
|
108 | 111 | <build> |
109 | 112 | <plugins> |
110 | 113 | <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
111 | 115 | <artifactId>maven-surefire-plugin</artifactId> |
112 | | - <version>3.0.0-M5</version> |
| 116 | + <version>3.0.0</version> |
113 | 117 | <configuration> |
114 | 118 | <skip>true</skip> |
115 | 119 | </configuration> |
|
140 | 144 | <version>3.14.9</version> |
141 | 145 | <scope>compile</scope> |
142 | 146 | </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> |
143 | 153 | <dependency> |
144 | 154 | <groupId>com.google.code.gson</groupId> |
145 | 155 | <artifactId>gson</artifactId> |
|
207 | 217 | <plugin> |
208 | 218 | <groupId>org.apache.maven.plugins</groupId> |
209 | 219 | <artifactId>maven-surefire-plugin</artifactId> |
210 | | - <version>3.0.0-M5</version> |
| 220 | + <version>3.0.0</version> |
211 | 221 | <configuration> |
212 | 222 | <argLine>-javaagent:"${project.build.directory}/agents/jmockit-1.49.jar"</argLine> |
213 | 223 | </configuration> |
214 | 224 | </plugin> |
215 | 225 | <plugin> |
| 226 | + <groupId>org.apache.maven.plugins</groupId> |
216 | 227 | <artifactId>maven-compiler-plugin</artifactId> |
217 | | - <version>3.8.1</version> |
| 228 | + <version>3.11.0</version> |
218 | 229 | <configuration> |
219 | 230 | <source>1.8</source> |
220 | 231 | <target>1.8</target> |
|
224 | 235 | </configuration> |
225 | 236 | </plugin> |
226 | 237 | <plugin> |
| 238 | + <groupId>org.apache.maven.plugins</groupId> |
227 | 239 | <artifactId>maven-jar-plugin</artifactId> |
228 | | - <version>3.2.0</version> |
| 240 | + <version>3.2.2</version> |
229 | 241 | <configuration> |
230 | 242 | <archive> |
231 | 243 | <manifest> |
|
0 commit comments