Skip to main content
JAX-WS Maven plugin –

Using Metro binaries

<project>
  ...
  <dependencies>
      ...
    <dependency>
      <groupId>org.glassfish.metro</groupId>
      <artifactId>webservices-rt</artifactId>
      <version>3.0.0</version>
    </dependency>
    ...
  </dependencies>
  ...
  <build>
    ...
    <plugins>
      <plugin>
        <groupId>com.sun.xml.ws</groupId>
        <artifactId>jaxws-maven-plugin</artifactId>
        <version>3.0.0</version>
        <dependencies>
          <dependency>
            <groupId>org.glassfish.metro</groupId>
            <artifactId>webservices-tools</artifactId>
            <version>3.0.0</version>
          </dependency>
        </dependencies>
        <executions>
          ...
        </executions>
      </plugin>
      ...
    </plugins>
    ...
  <build>
  ...
</project>

Back to the top