Downloads

The fragments may be downloaded using Maven. They are stored within the cedarsoft public repository .

Snapshots are available at cedarsoft public snapshots repository .

Adding cedarsoft repository

You may add the cedarsoft repositories to your settings.xml. Maven will be able to download the artifacts automatically.

Add this section to your settings.xml (in $user.home/.m2/settings.xml)

<profiles>
  <profile>
    <id>default</id>
    <activation>
      <activeByDefault />
    </activation>

    <repositories>

      <repository>
        <id>cedarsoftRepository</id>
        <name>Cedarsoft Repository</name>
        <url>http://maven.cedarsoft.com/public/release</url>
        <releases>
          <enabled>true</enabled>
        </releases>
      </repository>

    </repositories>

  </profile>
</profiles>

Adding cedarsoft snapshots repository

To download the latest snapshot releases you may add the following repository to your settings.xml

    <repository>
      <id>cedarsoftSnapshotRepository</id>
      <name>Cedarsoft Snapshot Repository</name>
      <url>http://maven.cedarsoft.com/public/snapshots</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>