Skip to content

Latest commit

 

History

History
57 lines (50 loc) · 2.01 KB

README.md

File metadata and controls

57 lines (50 loc) · 2.01 KB

ObjectStyle Builds of Apache Cayenne

This is a fork of Apache Cayenne used to create unofficial builds of Cayenne, to facilitate testing and adoption of new Cayenne features between the official releases. It is used by ObjectStyle LLC, its clients, and can be freely used by anyone else under the terms of the Apache License.

To use the unofficial builds, add the following repository to your pom.xml:

<repository>
	<id>cayenne-unofficial</id>
	<name>Cayenne Unofficial Releases @ ObjectStyle</name>
	<url>https://maven.objectstyle.org/nexus/content/repositories/cayenne-unofficial/</url>
	<releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>

To use the unofficial snapshots, add the following repository to your pom.xml:

<repository>
	<id>cayenne-unofficial</id>
	<name>Cayenne Unofficial Releases @ ObjectStyle</name>
	<url>https://maven.objectstyle.org/nexus/content/repositories/cayenne-unofficial-snapshots/</url>
	<releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>