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 >
4747 </scm >
4848 <distributionManagement >
4949 <snapshotRepository >
50- <id >ossrh </id >
51- <url >https://oss .sonatype.org/content/repositories/snapshots </url >
50+ <id >central </id >
51+ <url >https://central .sonatype.com </url >
5252 </snapshotRepository >
5353 </distributionManagement >
5454 <profiles >
254254 </configuration >
255255 </plugin >
256256 <plugin >
257- <groupId >org.sonatype.plugins </groupId >
258- <artifactId >nexus-staging -maven-plugin</artifactId >
259- <version >1 .7.0</version >
257+ <groupId >org.sonatype.central </groupId >
258+ <artifactId >central-publishing -maven-plugin</artifactId >
259+ <version >0 .7.0</version >
260260 <extensions >true</extensions >
261261 <configuration >
262- <serverId >ossrh</serverId >
263- <nexusUrl >https://oss.sonatype.org/</nexusUrl >
264- <autoReleaseAfterClose >true</autoReleaseAfterClose >
262+ <publishingServerId >central</publishingServerId >
263+ <autoPublish >true</autoPublish >
265264 </configuration >
266265 </plugin >
267266 <plugin >
Original file line number Diff line number Diff line change 11<settings >
22 <servers >
33 <server >
4- <id >ossrh </id >
4+ <id >central </id >
55 <username >${env.SONATYPE_USERNAME}</username >
66 <password >${env.SONATYPE_PASSWORD}</password >
77 </server >
88 </servers >
99 <profiles >
1010 <profile >
11- <id >ossrh </id >
11+ <id >central </id >
1212 <activation >
1313 <activeByDefault >true</activeByDefault >
1414 </activation >
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