File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 1.8.9
2+ * Upgraded dependencies (okio 3.12.0, gson 2.13.1, commons-codec 1.21.0)
3+ * Upgraded all Maven plugins to latest stable versions
4+ * Fixed OSGi Import-Package to exclude unresolvable packages (org.openjsse, dalvik, etc.)
5+ * Added OSGi bundle manifest integration test
6+ * Upgraded maven-bundle-plugin to 5.1.9 (Java 11 compatible)
7+
18## 1.8.8
29* Fixed transient dependencies for okhttp
310
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.tinify</groupId >
55 <artifactId >tinify</artifactId >
6- <version >1.8.8 </version >
6+ <version >1.8.9 </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 >
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class BundleManifestIT {
2323
2424 private Manifest loadBundleManifest () throws IOException {
2525 String buildDir = System .getProperty ("project.build.directory" , "target" );
26- String finalName = System .getProperty ("project.build.finalName" , "tinify-1.8.8 " );
26+ String finalName = System .getProperty ("project.build.finalName" , "tinify-1.8.9 " );
2727 File jar = new File (buildDir , finalName + ".jar" );
2828 assertTrue ("Bundle JAR not found: " + jar .getAbsolutePath (), jar .exists ());
2929 try (JarFile jarFile = new JarFile (jar )) {
You can’t perform that action at this time.
0 commit comments