Skip to main content
JAX-WS Maven plugin –

Snapshot builds of current development version are regularly pushed to Jakarta snapshots repository. In order to be able to use SNAPSHOT version in your project, you need to add following pluginRepository definition to your pom.xml:

<project>
  ...
  <pluginRepositories>
    <pluginRepository>
      <id>jakarta-snapshots</id>
      <url>https://jakarta.oss.sonatype.org/content/repositories/snapshots/</url>
      <releases>
        <enabled>false</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>true</enabled>
        <updatePolicy>always</updatePolicy>
      </snapshots>
      <layout>default</layout>
    </pluginRepository>
  </pluginRepositories>
  ...
</project>

Back to the top