Skip to content

Commit d176945

Browse files
committed
Updated readme for 2404
1 parent f7c8ec7 commit d176945

File tree

3 files changed

+10
-21
lines changed

3 files changed

+10
-21
lines changed

README.md

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
![CoreMedia Labs Logo](https://documentation.coremedia.com/badges/banner_coremedia_labs_wide.png "CoreMedia Labs Logo")
2-
3-
![CoreMedia Content Cloud Version](https://img.shields.io/static/v1?message=2101&label=CoreMedia%20Content%20Cloud&style=for-the-badge&labelColor=666666&color=672779 "This badge shows the CoreMedia version this project is compatible with.
1+
![CoreMedia Content Cloud Version](https://img.shields.io/static/v1?message=2404&label=CoreMedia%20Content%20Cloud&style=for-the-badge&labelColor=666666&color=672779 "This badge shows the CoreMedia version this project is compatible with.
42
Please read the versioning section of the project to see what other CoreMedia versions are supported and how to find them.")
5-
![Status](https://img.shields.io/static/v1?message=active&label=Status&style=for-the-badge&labelColor=666666&color=2FAC66
6-
"The status badge describes if the project is maintained. Possible values are active and inactive.
7-
If a project is inactive it means that the development has been discontinued and won't support future CoreMedia versions."
8-
)
93

104
# Content Hub Adapter for Pixabay
115

@@ -19,13 +13,10 @@ The types of content working with this adapter are:
1913

2014

2115
## Versioning
22-
The main branch of this project is suitable for CoreMedia versions since 2101.
16+
The main branch of this project is suitable for CoreMedia versions since 2404.
2317
It is based on the plugin architecture.
2418

25-
For older CoreMedia versions there are branches with corresponding names.
26-
For example, if your CoreMedia version is 2010.1, checkout the branch cmcc-10-2010.
27-
These older versions are based on the extensions architecture, because plugins are
28-
available only since 2101.
19+
For older CoreMedia versions there are branches with corresponding names.
2920

3021
## Documentation & Tutorial
3122

studio-server/pom.xml

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<maven.compiler.release>11</maven.compiler.release>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15-
<cm.studio-server.core.version>2110.2</cm.studio-server.core.version>
16-
<cm.common.core.version>2110.2</cm.common.core.version>
15+
<cm.studio-server.core.version>2404.1</cm.studio-server.core.version>
16+
<cm.common.core.version>2404.1</cm.common.core.version>
1717
<jackson.version>2.12.3</jackson.version>
1818
</properties>
1919

@@ -129,12 +129,11 @@
129129
</dependency>
130130

131131
<dependency>
132-
<groupId>com.sun.activation</groupId>
133-
<artifactId>jakarta.activation</artifactId>
134-
<version>1.2.2</version>
132+
<groupId>jakarta.activation</groupId>
133+
<artifactId>jakarta.activation-api</artifactId>
134+
<version>2.1.2</version>
135135
<scope>provided</scope>
136136
</dependency>
137-
138137
<dependency>
139138
<groupId>org.junit.jupiter</groupId>
140139
<artifactId>junit-jupiter</artifactId>

studio-server/src/main/java/com/coremedia/labs/plugins/adapters/pixabay/model/PixabayContentHubBlob.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
package com.coremedia.labs.plugins.adapters.pixabay.model;
22

33
import com.coremedia.contenthub.api.ContentHubBlob;
4-
import com.coremedia.contenthub.api.ContentHubDefaultBlob;
54
import com.coremedia.contenthub.api.ContentHubObject;
65
import com.coremedia.contenthub.api.UrlBlobBuilder;
76
import com.coremedia.mimetype.MimeTypeService;
7+
import jakarta.activation.MimeType;
8+
import jakarta.activation.MimeTypeParseException;
89
import org.apache.commons.io.FilenameUtils;
910
import org.slf4j.Logger;
1011
import org.slf4j.LoggerFactory;
1112

12-
import javax.activation.MimeType;
13-
import javax.activation.MimeTypeParseException;
1413
import java.io.InputStream;
1514
import java.util.Optional;
1615

0 commit comments

Comments
 (0)