Skip to content

Commit 865eb9e

Browse files
committed
release: 1.8.9
1 parent b97806c commit 865eb9e

4 files changed

Lines changed: 18 additions & 12 deletions

File tree

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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

pom.xml

Lines changed: 8 additions & 9 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.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>
@@ -47,8 +47,8 @@
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>
@@ -254,14 +254,13 @@
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>

settings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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>

src/test/java/com/tinify/BundleManifestIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)) {

0 commit comments

Comments
 (0)