feature/added the scalaxb-maven-plugin to obp

This commit is contained in:
hongwei 2021-03-03 01:09:17 +01:00
parent b8ec97ce1b
commit 219e21d5a5

View File

@ -646,6 +646,24 @@
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.scalaxb</groupId>
<artifactId>scalaxb-maven-plugin</artifactId>
<version>1.7.5</version>
<configuration>
<packageName>code.adapter.soap</packageName>
<wsdlDirectory>src/main/resources/custom_webapp/wsdl</wsdlDirectory>
<xsdDirectory>src/main/resources/custom_webapp/xsd</xsdDirectory>
</configuration>
<executions>
<execution>
<id>scalaxb</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<!--grpc related plugin begin-->
<!-- currently not need, enable this plugin when need generate new grpc code.
<plugin>