You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Garvin Leclaire (JIRA)" <ji...@apache.org> on 2008/05/29 23:01:45 UTC

[jira] Created: (AXIS2-3829) add the ability to state a codegen.config in the Maven WSDL2Code plugin

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: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org