add the ability to state a codegen.config in the Maven WSDL2Code plugin
-----------------------------------------------------------------------

                 Key: AXIS2-3829
                 URL: https://issues.apache.org/jira/browse/AXIS2-3829
             Project: Axis 2.0 (Axis2)
          Issue Type: Improvement
          Components: Tools
    Affects Versions: 1.4
            Reporter: Garvin Leclaire
            Priority: Trivial


It would be nice to be able to define the codegen.config as part of the 
configuration of the plugin instead of having to pass in an environment 
variable like 
-Dorg.apache.axis2.codegen.config=my-axis-codegen-config.properties 

I could look something like:

    <build>
        <plugins>
                <plugin>
                        <groupId>org.apache.axis2</groupId>
                        <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
                                <version>1.4</version>
                        <executions>
                                <execution>
                                        <goals>
                                                <goal>wsdl2code</goal>
                                        </goals>
                                <configuration>
                                        
<codegen.config>my-axis-codegen-config.properties </codegen.config>
                                        
<packageName>com.foo.myservice</packageName>
                                        
<wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
                                        
<databindingName>xmlbeans</databindingName>
                                </configuration>
                                </execution>
                        </executions>
                </plugin>
        </plugins>
    </build>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to