Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Version [10.5.23] - (2025-07-03)
- fix: inconsistent rich text embedding

## Version [10.5.21] - (2025-03-04)
- fix: add limit to sync query

Expand Down Expand Up @@ -289,6 +292,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Version 1.0.0 - 2014-08-13
Initial release.

[10.5.23]: https://github.com/contentful/contentful.java/compare/v.10.5.21...v.10.5.23
[10.5.21]: https://github.com/contentful/contentful.java/compare/v.10.5.19...v.10.5.21
[10.5.19]: https://github.com/contentful/contentful.java/compare/v.10.5.18...v.10.5.19
[10.5.18]: https://github.com/contentful/contentful.java/compare/v.10.5.17...v.10.5.18
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ Install the Contentful dependency:
<dependency>
<groupId>com.contentful.java</groupId>
<artifactId>java-sdk</artifactId>
<version>10.5.22</version>
<version>10.5.23</version>
</dependency>
```

* _Gradle_

```groovy
compile 'com.contentful.java:java-sdk:10.5.22'
compile 'com.contentful.java:java-sdk:10.5.23'
```

This library requires Java 8 (or higher version) or Android 21.
Expand Down
65 changes: 58 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@

<groupId>com.contentful.java</groupId>
<artifactId>java-sdk</artifactId>
<version>10.5.23-SNAPSHOT</version>
<version>10.5.23</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
<description>Java SDK for Contentful's Content Delivery API.</description>
<url>http://github.com/contentful/contentful.java</url>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<scm>
<url>http://github.com/contentful/contentful.java</url>
<connection>scm:git:git://github.com/contentful/contentful.java.git</connection>
Expand All @@ -40,6 +34,14 @@
<url>http://contentful.com</url>
</organization>

<developers>
<developer>
<id>rafal</id>
<name>Rafal Niski</name>
<email>rafal.niski@external.contentful.com</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding>
Expand Down Expand Up @@ -247,6 +249,55 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>