Skip to content

Commit

Permalink
[update] Add cxf-soap customizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Veres committed Oct 26, 2022
1 parent ed1c5a0 commit a6b7fe4
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package software.tnb.product.customizer.component.cxf;

import software.tnb.product.customizer.ProductsCustomizer;
import software.tnb.product.cxf.CxfConfiguration;
import software.tnb.product.util.maven.Maven;

public class CxfSoapCustomizer extends ProductsCustomizer {

@Override
public void customizeCamelK() {
}

@Override
public void customizeQuarkus() {
}

@Override
public void customizeSpringboot() {
getIntegrationBuilder().dependencies(
Maven.createDependency("org.apache.cxf:cxf-spring-boot-starter-jaxws:" + CxfConfiguration.cxfVersion(),
"spring-boot-starter-tomcat"));
}
}

0 comments on commit a6b7fe4

Please sign in to comment.