Automaticly regeneration WSDL after update with AXIS 1.4

220 views Asked by At

So i have w java project with AXIS 1.4 generated WSDL on eclipse usually when i update a webService java class, i have to manually regenerate the new WSDL on eclipse before creating the new war file with maven clean install

Is there a way to make this process automtic => the new updated WSDL regenerate automaticly when running maven clean install?

these are the dependencies i have for axis i'm using create web service wizard of eclipe to generate the wsdl

<dependency>
            <groupId>org.apache.axis</groupId>
            <artifactId>axis</artifactId>
            <version>1.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.axis</groupId>
            <artifactId>axis-jaxrpc</artifactId>
            <version>1.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>commons-discovery</groupId>
            <artifactId>commons-discovery</artifactId>
            <version>0.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.2</version>
            <scope>compile</scope>
        </dependency>
0

There are 0 answers