Skip to content

Commit 32253dd

Browse files
committed
readme.md
1 parent e00d92c commit 32253dd

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ Install the Contentful dependency:
9191
<dependency>
9292
<groupId>com.contentful.java</groupId>
9393
<artifactId>cma-sdk</artifactId>
94-
<version>3.4.19</version>
94+
<version>3.4.23</version>
9595
</dependency>
9696
```
9797

9898
* _Gradle_
9999
```groovy
100-
compile 'com.contentful.java:cma-sdk:3.4.19'
100+
compile 'com.contentful.java:cma-sdk:3.4.23'
101101
```
102102

103103
This SDK requires Java 8 (or higher version).

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,6 @@
265265
<sourceDirs>
266266
<source>src/test/kotlin</source>
267267
</sourceDirs>
268-
<skip>${maven.test.skip}</skip>
269268
</configuration>
270269
</execution>
271270
</executions>

src/main/java/com/contentful/java/cma/ModuleEntries.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,6 @@ public CMAEntry update(CMAEntry entry) {
396396
* @throws IllegalArgumentException if entry's version is null.
397397
* @throws IllegalArgumentException if operations is null.
398398
* @see <a href="https://tools.ietf.org/html/rfc6902">JSON Patch RFC 6902</a>
399-
* @see <a href="https://www.contentful.com/developers/docs/references/content-management-api/#/
400-
* reference/entries/entry/update-an-entry">Contentful API Documentation</a>
401399
*/
402400
public CMAEntry patch(CMAEntry entry, java.util.List<java.util.Map<String, Object>> operations) {
403401
assertNotNull(entry, "entry");
@@ -453,8 +451,6 @@ public CMAEntry patch(CMAEntry entry, java.util.List<java.util.Map<String, Objec
453451
* @throws IllegalArgumentException if version is null.
454452
* @throws IllegalArgumentException if operations is null.
455453
* @see <a href="https://tools.ietf.org/html/rfc6902">JSON Patch RFC 6902</a>
456-
* @see <a href="https://www.contentful.com/developers/docs/references/content-management-api/#/
457-
* reference/entries/entry/update-an-entry">Contentful API Documentation</a>
458454
*/
459455
public CMAEntry patch(String spaceId, String environmentId, String entryId, Integer version,
460456
java.util.List<java.util.Map<String, Object>> operations) {

0 commit comments

Comments
 (0)