A plugin that generates WebService as deployable WAR for WAS 6.0.x
------------------------------------------------------------------
Key: MOJO-1107
URL: http://jira.codehaus.org/browse/MOJO-1107
Project: Mojo
Issue Type: New Feature
Components: Plugin Submission
Environment: IBM WebSphere 6.0
Reporter: Eugene Silinov
Attachments: java2wsdl-was-maven-plugin.zip
Generates WebService as deployable WAR for WAS 6.0.x. This is an initial
version. Here is an example how to use it:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>java2wsdl-was-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<classname>com.mycompany.test.Test</classname>
<location>http://localhost:9080/test/Test</location>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>websphere</groupId>
<artifactId>deployutils</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>wccm-base</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>emf</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>wsdl4j</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>j2ee</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>bootstrap</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>ras</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>wsexception</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>classloader</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>websphere</groupId>
<artifactId>xml</artifactId>
<version>6.0.2</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
<version>0.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
</plugins>
</build>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email