Home / maven
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2013-04-03 1.5 kB
Totals: 1 Item   1.5 kB 0

CZT libraries on Maven Central

The upcoming CZT release will be distributed in Maven Central and will be accessible from Maven and other builds.

Before the release is finalised, however, you can access the nightly -SNAPSHOT releases.

Nightly -SNAPSHOT releases for Maven

The nightly builds of CZT libraries and Maven plug-ins are deployed to Sonatype OSS Maven Snapshots repository. These are -SNAPSHOT releases and should be used only when you need the cutting-edge features and fixes from CZT.

To use CZT -SNAPSHOT releases in your builds, add the Sonatype Snapshots repository to your POM:

<repositories>
  <repository>
    <id>sonatype-nexus-snapshots</id>
    <name>Sonatype Nexus Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

<pluginRepositories>
  <pluginRepository>
    <id>sonatype-nexus-snapshots</id>
    <name>Sonatype Nexus Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </pluginRepository>
</pluginRepositories>

Use repositories when using CZT libraries as dependencies; use pluginRepositories when using CZT Maven plugins.

Source: README.md, updated 2013-04-03