This pom.xml worked for me. mvn console printed, Downloading: http://repo1.maven.org/maven2/org/apache/axis2/axis2-wsdl2code-maven-plugin/1.3/axis2-wsdl2code-maven-plugin-1.3.pom 3K downloaded Downloading: http://repo1.maven.org/maven2/org/apache/axis2/axis2-wsdl2code-maven-plugin/1.3/axis2-wsdl2code-maven-plugin-1.3.jar 11K downloaded
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.test</groupId> <artifactId>hello</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>hello</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.axis2</groupId> <artifactId>axis2-wsdl2code-maven-plugin</artifactId> <version>1.3</version> <executions> <execution> <goals> <goal>wsdl2code</goal> </goals> <configuration> <packageName>com.test.service</packageName> </configuration> </execution> </executions> </plugin> </plugins> </build> </project> Upul On Nov 7, 2007 7:02 PM, David Wilkinson <[EMAIL PROTECTED]> wrote: > Hi > > I am starting a new project and have started to put a POM file together for > an axis web service, and I'm looking for a plugin to generate my code. I > have spotted the one under the tools section of the web site but when I > tryed to down load the plugin from the site all the links are broken and > there are no maven 2 repositories that have version 1.3. The only version I > have found so far is version 1.1 which also seams to suffer from dependency > issues. > > Has anyone got this working or is there any other maven 2 plugin about that > I can use. Any help would be grateful > > Regards > > DRAW > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
