[jboss-user] [JBoss Web Services] - Re: Maven plugin to execute wsconsume

Lin Claire do-not-reply at jboss.com
Tue Jan 15 02:32:08 EST 2013


Lin Claire [https://community.jboss.org/people/clairelin] created the discussion

"Re: Maven plugin to execute wsconsume"

To view the discussion, visit: https://community.jboss.org/message/791904#791904

--------------------------------------------------------------
For your reference, mine is:

{code:xml}

........

            <build>
                    <pluginManagement>
                    </pluginManagement>
                    <plugins>
                              <plugin>
                                        <artifactId>maven-compiler-plugin</artifactId>
                                        <version>2.3.2</version>
                                        <configuration>
                                                  <source>1.5</source>
                                                  <target>1.5</target>
                                        </configuration>
                              </plugin>
  <plugin>
                                        <groupId>org.jboss.ws.plugins</groupId>
                                        <artifactId>maven-jaxws-tools-plugin</artifactId>
                                        <version>1.1.0.GA</version>
                                        <configuration>
                                                  <wsdls>
        <wsdl> http://abc/def_ep?WSDL http://abc/def_ep?WSDL</wsdl>
                                                  </wsdls>
                                                  <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
                                                  <extension>true</extension>
                                                  <verbose>true</verbose>
                                                  <goalPrefix>wsconsume</goalPrefix>
                                        </configuration>
                                        <executions>
                                                  <execution>
                                                            <goals>
                                                                      <goal>wsconsume</goal>
                                                            </goals>
                                                  </execution>
                                        </executions>
                              </plugin>
                    </plugins>
          </build>
          <dependencies>
                    <dependency>
                              <groupId>org.jboss.spec.javax.xml.ws</groupId>
                              <artifactId>jboss-jaxws-api_2.2_spec</artifactId>
                              <version>2.0.0.Final</version>
                              <scope>provided</scope>
                    </dependency>
                    <dependency>
                              <groupId>org.jboss.ws.cxf</groupId>
                              <artifactId>jbossws-cxf-client</artifactId>
                              <version>4.0.0.GA</version>
                              <scope>provided</scope>
                    </dependency>
                    <dependency>
                              <groupId>org.jboss.ws</groupId>
                              <artifactId>jbossws-api</artifactId>
                              <version>1.0.0.GA</version>
                              <scope>provided</scope>
                    </dependency>
          </dependencies>

........

{code}
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/791904#791904]

Start a new discussion in JBoss Web Services at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2044]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20130115/fde052a5/attachment-0001.html 


More information about the jboss-user mailing list