Skip to content

Commit

Permalink
fixes apache#6608 - deprecated groovy-dsl as is deprecated in Camel
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriOndrusek committed Oct 8, 2024
1 parent 5512868 commit faba8e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/reference/extensions/groovy-dsl.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
:linkattrs:
:cq-artifact-id: camel-quarkus-groovy-dsl
:cq-native-supported: true
:cq-status: Stable
:cq-status-deprecation: Stable
:cq-status: Deprecated
:cq-status-deprecation: Deprecated
:cq-description: Support for parsing Groovy route definitions at runtime
:cq-deprecated: false
:cq-jvm-since: 1.8.0
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.status>deprecated</quarkus.metadata.status>
</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 faba8e0

Please sign in to comment.