Skip to content

Commit

Permalink
Remove camel-quarkus-xml-io apache#2436
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Jun 4, 2021
1 parent 5675d5d commit 25cbdd0
Show file tree
Hide file tree
Showing 18 changed files with 15 additions and 336 deletions.
13 changes: 0 additions & 13 deletions catalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4264,19 +4264,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-xml-io</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-xml-io-dsl</artifactId>
Expand Down
1 change: 0 additions & 1 deletion docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@
*** xref:reference/extensions/workday.adoc[Workday]
*** xref:reference/extensions/xchange.adoc[XChange]
*** xref:reference/extensions/xj.adoc[XJ]
*** xref:reference/extensions/xml-io.adoc[XML IO]
*** xref:reference/extensions/xml-io-dsl.adoc[XML IO DSL]
*** xref:reference/extensions/xml-jaxb.adoc[XML JAXB]
*** xref:reference/extensions/xml-jaxp.adoc[XML JAXP]
Expand Down
30 changes: 0 additions & 30 deletions docs/modules/ROOT/pages/reference/extensions/xml-io.adoc

This file was deleted.

4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/reference/extensions/xml-jaxb.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
:cq-native-supported: true
:cq-status: Stable
:cq-status-deprecation: Stable
:cq-description: An XML stack for parsing XML route definitions. A legacy alternative to the fast an light weight camel-quarkus-xml-io
:cq-description: An XML stack for parsing XML route definitions. A legacy alternative to the fast an light weight camel-quarkus-xml-io-dsl
:cq-deprecated: false
:cq-jvm-since: 1.0.0
:cq-native-since: 1.0.0

[.badges]
[.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##

An XML stack for parsing XML route definitions. A legacy alternative to the fast an light weight camel-quarkus-xml-io
An XML stack for parsing XML route definitions. A legacy alternative to the fast an light weight camel-quarkus-xml-io-dsl

== Maven coordinates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public String dumpModelAsXml(CamelContext context, NamedNode definition) throws
@Override
public String dumpModelAsXml(CamelContext context, NamedNode definition, boolean resolvePlaceholders,
boolean resolveDelegateEndpoints) throws Exception {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io");
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io-dsl");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public DisabledPredicateValidatorReifier(CamelContext camelContext, ValidatorDef

@Override
protected Validator doCreateValidator() {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io");
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io-dsl");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public DisabledValidateReifier(Route route, ProcessorDefinition<?> definition) {

@Override
public Processor createProcessor() throws Exception {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io");
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io-dsl");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
public class DisabledXMLRoutesDefinitionLoader implements XMLRoutesDefinitionLoader {
@Override
public Object loadRoutesDefinition(CamelContext context, InputStream inputStream) throws Exception {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io");
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io-dsl");
}

@Override
public Object loadRouteTemplatesDefinition(CamelContext context, InputStream inputStream) throws Exception {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io");
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io-dsl");
}

@Override
public Object loadRestsDefinition(CamelContext context, InputStream inputStream) throws Exception {
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io");
throw new UnsupportedOperationException("Please add a dependency to camel-quarkus-xml-io-dsl");
}
}
1 change: 0 additions & 1 deletion extensions-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<module>http-common</module>
<module>reactive-executor</module>
<module>threadpoolfactory-vertx</module>
<module>xml-io</module>
<module>xml-io-dsl</module>
<module>xml-jaxb</module>
<module>xml-jaxp</module>
Expand Down
61 changes: 0 additions & 61 deletions extensions-core/xml-io/deployment/pom.xml

This file was deleted.

This file was deleted.

37 changes: 0 additions & 37 deletions extensions-core/xml-io/pom.xml

This file was deleted.

108 changes: 0 additions & 108 deletions extensions-core/xml-io/runtime/pom.xml

This file was deleted.

Loading

0 comments on commit 25cbdd0

Please sign in to comment.