Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Number of Examples: 72 (0 deprecated)

| link:ftp/README.adoc[FTP] (ftp) | File | An example for showing Camel FTP integration

| link:minio/README.adoc[Minio] (minio) | File | An example for showing Camel using MinIO Component
| link:minio/README.adoc[Minio] (minio) | File | (Deprecated) An example for showing Camel using MinIO Component

| link:kamelet/README.adoc[Kamelet] (kamelet) | Kamelet | How to use Kamelets

Expand Down
2 changes: 1 addition & 1 deletion minio/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
== Camel MinIO Example
== Camel MinIO Example (Deprecated)

This example shows how to use Camel MinIO component to write and read objects in a bucket.

Expand Down
4 changes: 2 additions & 2 deletions minio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
</parent>

<artifactId>camel-example-minio</artifactId>
<name>Camel :: Example :: MinIO</name>
<description>An example for showing Camel using MinIO Component</description>
<name>Camel :: Example :: MinIO (Deprecated)</name>
<description>An example for showing Camel using MinIO Component (Deprecated)</description>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@
import org.apache.camel.test.infra.minio.services.MinioService;
import org.apache.camel.test.infra.minio.services.MinioServiceFactory;
import org.apache.camel.test.main.junit6.CamelMainTestSupport;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;

import java.util.concurrent.TimeUnit;

import static org.junit.jupiter.api.Assertions.assertTrue;

@Disabled("MinIO was deprecated in 4.23. The upstream project is closed and container images were aggressively removed from registries.")
public class MainMinioTest extends CamelMainTestSupport {

@RegisterExtension
Expand Down
Loading