Skip to content

maven plugin to download and save wsdl and xsd files automatically

License

Notifications You must be signed in to change notification settings

mimdal/maven-save-wsdl-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SAVE WSDL MAVEN PLUGIN

Apache License, Version 2.0, January 2004

About

In briefly, It Saves the soap WSDL file and all xsd files.

Building

You need Java JDK 8 to build Plugin. Make sure Maven is using Java JDK 8 by setting JAVA_HOME before running Maven:

  • export JAVA_HOME=/PATH/TO/JDK/8
  • mvn clean install

Config

Add this setting to maven pom file. Default lifecycle set to PACKAGE phase.

<plugin>
        <groupId>com.github.mimdal</groupId>
        <artifactId>save-wsdl-maven-plugin</artifactId>
        <version>${save.wsdl.maven.plugin.version}</version>
        <executions>
            <execution>
                <goals>
                    <goal>save</goal>
                </goals>
            </execution>
        </executions>
        <configuration>
            <endPoint>http://ip:port/wsdl</endPoint>
            <xsdDirectory>xsd</xsdDirectory>
            <relativeSaveDirectory>src/main/resources/wsdl</relativeSaveDirectory>
            <wsdlName>wsdl.xml</wsdlName>
            <xsdPrefix>import-num</xsdPrefix>
        </configuration>
</plugin>

Contribute

You have found a bug or you have an idea for a cool new feature? Contributing code is a great way to give something back to the open source community.

About

maven plugin to download and save wsdl and xsd files automatically

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages