Skip to content

Commit

Permalink
fixes #6608 - deprecated groovy-dsl as is deprecated in Camel
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriOndrusek authored and jamesnetherton committed Oct 9, 2024
1 parent 927e421 commit 83b93d0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/examples/others/groovy-dsl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cqArtifactId: camel-quarkus-groovy-dsl
cqArtifactIdBase: groovy-dsl
cqNativeSupported: true
cqStatus: Stable
cqDeprecated: false
cqDeprecated: true
cqJvmSince: 1.8.0
cqNativeSince: 2.16.0
cqCamelPartName: groovy-dsl
Expand Down
6 changes: 3 additions & 3 deletions docs/modules/ROOT/pages/reference/extensions/groovy-dsl.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
:cq-artifact-id: camel-quarkus-groovy-dsl
:cq-native-supported: true
:cq-status: Stable
:cq-status-deprecation: Stable
:cq-status-deprecation: Stable Deprecated
:cq-description: Support for parsing Groovy route definitions at runtime
:cq-deprecated: false
:cq-deprecated: true
:cq-jvm-since: 1.8.0
:cq-native-since: 2.16.0

ifeval::[{doc-show-badges} == true]
[.badges]
[.badge-key]##JVM since##[.badge-supported]##1.8.0## [.badge-key]##Native since##[.badge-supported]##2.16.0##
[.badge-key]##JVM since##[.badge-supported]##1.8.0## [.badge-key]##Native since##[.badge-supported]##2.16.0## [.badge-key]##⚠️##[.badge-unsupported]##Deprecated##
endif::[]

Support for parsing Groovy route definitions at runtime
Expand Down
1 change: 1 addition & 0 deletions extensions/groovy-dsl/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<properties>
<camel.quarkus.jvmSince>1.8.0</camel.quarkus.jvmSince>
<camel.quarkus.nativeSince>2.16.0</camel.quarkus.nativeSince>
<quarkus.metadata.deprecated>true</quarkus.metadata.deprecated>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ metadata:
- "integration"
status:
- "stable"
- "deprecated"
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.apache.camel.quarkus.maven;

public enum ExtensionStatus {
preview("Preview"), stable("Stable"), experimental("Experimental");
preview("Preview"), stable("Stable"), experimental("Experimental"), deprecated("Deprecated");

private ExtensionStatus(String capitalized) {
this.capitalized = capitalized;
Expand Down

0 comments on commit 83b93d0

Please sign in to comment.