Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Stable Builds

Stable versions are the offical releases of an application. New stable versions usually are being published rarely and without the latest features. You can take this if you are only interest in the fundamental core functionality of an application.

Attachments
uploadfalse
labelsrelease

 

Code Block
languagexml
titleMaven Dependency
<dependency>
    <groupId>org.cip4.lib.ptk</groupId>
    <artifactId>PrintTalkJ</artifactId>
    <version>[version]</version>
</dependency>

 

 

Continuous Builds

Continuous builds are triggered automatically whenever an code update has been done. So, this version always contains the very latest features but may be unstable in some specific circumstances.

Attachments
uploadfalse
labelssnapshot

 

Code Block
languagexml
titleMaven Dependency
<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>

<dependency>
    <groupId>org.cip4.lib.ptk</groupId>
    <artifactId>PrintTalkJ</artifactId>
    <version>[version]-SNAPSHOT</version>
</dependency>