Code für den verringerten Umfang von 1.4 neu generiert

This commit is contained in:
2019-09-02 09:56:48 +02:00
parent e70b995143
commit 793193a5dd
41 changed files with 100 additions and 3230 deletions

View File

@@ -236,7 +236,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<profiles>
<!-- Spezielles Profil um Java-Code aus dem WSDL zu generieren -->
<!-- Spezielles Profil um Java-Code fuer die VU-Schnittstelle aus dem WSDL zu generieren -->
<profile>
<id>genJavaFromWsdl_r1_4_0_VU</id>
<activation>
@@ -324,70 +324,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
</build>
</profile>
<profile>
<id>genJavaFromWsdl_r1_4_0_Broker</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>codeGen</name>
</property>
</activation>
<properties>
<currentOmds3VersionDir>r1_4_0</currentOmds3VersionDir>
<wsdl.name>omds3ServicesBroker.wsdl</wsdl.name>
<wsdl.binding.xml>wsdl_broker_binding.xml</wsdl.binding.xml>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<configuration>
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
</configuration>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${target.generation.path}</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${wsdl.location}</wsdl>
<extendedSoapHeaders>true</extendedSoapHeaders>
<!-- wsdl/jaxb Binding wie der Code generiert werden soll -->
<bindingFiles>
<bindingFile>${bindings.location}/omds20Types_binding.xml</bindingFile>
<bindingFile>${bindings.location}/omdsServiceTypes_binding.xml</bindingFile>
<bindingFile>${bindings.location}/omdsCommonServiceTypes_binding.xml</bindingFile>
<bindingFile>${bindings.location}/omds3_ON7_Schaden_binding.xml</bindingFile>
<bindingFile>${bindings.location}/${wsdl.binding.xml}</bindingFile>
</bindingFiles>
<!-- you can set the options of wsdl2java command by using the <extraargs> -->
<extraargs>
<!-- <extraarg>-v</extraarg> zeige Versionsnummer dieses Tools -->
<extraarg>-impl</extraarg><!-- Implementation -->
<extraarg>-validate</extraarg>
<extraarg>-client</extraarg><!-- Auch Ansatzpunkt fuer Client generieren -->
<extraarg>-verbose</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Profil für die Makler-Schnittstelle gibt es unter Release 1.4 nicht -->
</profiles>
</project>