Alchemy Public Maven Repository

Repositories

This server hosts Maven 2 repositories for my Java projects. Artifacts in this repository are stable and will not be removed or modified.

This repository is mirrored to the Maven central repository. The instructions below only apply if you wish to use or mirror this repository directly, or if you (for some reason) need to grab snapshots as well as releases.

To use this repository in your own builds, you'll need the following repository settings in your settings.xml or pom.xml:

      <repository>
        <id>alchemy.grimoire.ca</id>
        <releases>
          <enabled>true</enabled>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
        <url>http://alchemy.grimoire.ca/m2/releases/</url>
      </repository>

You can also use bleeding-edge code from the snapshots repository. This is not recommended as snapshots hosted here are subject to change or removal without warning. If you can't resist, use the following repository settings:

      <repository>
        <id>alchemy.grimoire.ca:snapshots</id>
        <releases>
          <enabled>false</enabled>
        </releases>
        <snapshots>
          <enabled>true</enabled>
        </snapshots>
        <url>http://alchemy.grimoire.ca/m2/snapshots/</url>
      </repository>

You can also browse the releases and snapshots repositories yourself.

Forks of third-party software are held separately from the releases repository, to simplify license compliance. While I make an effort not to delete software from this repository, occasionally it may be necessary to remove artifacts. If you would like me to remove an artifact, please contact me at owen.jacobson@grimoire.ca. To use forked versions of third-party code from this repository, use the following repository settings:

      <repository>
        <id>alchemy.grimoire.ca:forks</id>
        <releases>
          <enabled>true</enabled>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
        <url>http://alchemy.grimoire.ca/m2/forks/</url>
      </repository>

Sites

Sites generated by project builds are hosted under this repository, organized by dot-separated group ID, a path separator, and artifact ID. For example, Mainspring is here.