Apache Causeway software is a framework for rapidly developing domain-driven apps in Java. Write your business logic in entities, domain services and repositories, and the framework dynamically generates a representation of that domain model as a webapp or a RESTful API.
This repo provides access to nightly builds of Apache Causeway (Apache Isis).
Warning
|
These nightly builds should not be used in production. Nightly builds are interim builds that are untested and unsupported. These unreleased builds may have undocumented features, known and unknown defects, and any number of other issues. They are intended for use by developers and others wishing to help with the development of the framework. Maven artifacts will not be kept around forever. Outdated ones will be regularly removed to respect available diskspace. |
The following are built and published nightly:
- Projects
-
-
-
2.x Snapshots
: Spring Framework 5.x, Java 11 -
3.x Snapshots
: Spring Framework 6.x, Java 17
-
-
- Docker Images (published on Docker Hub)
-
-
Demo (Wicket/JPA) apache/causeway-app-demo-jpa
-
Demo (Wicket/JDO) apache/causeway-app-demo-jdo
-
- Web Sites
-
-
Apache Causeway Site Nightly Preview
-
Also see demo-sources for details and on how to get started.
Notes on Semantic Versioning of Staged Builds.
- Inspect available versions
-
-
Apache Causeway builds
: Available Build Artifacts
-
pom.xml
:<profiles>
<profile>
<id>causeway-nightly-snapshots</id>
<activation>
<property>
<name>!skip.causeway-nightly-snapshots</name>
</property>
</activation>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<id>causeway-nightly-snapshots</id>
<name>Causeway Nightly Snapshots (maven)</name>
<url>https://raw.githubusercontent.com/apache-causeway-committers/causeway-nightly/master/mvn-snapshots</url>
</repository>
</repositories>
</profile>
</profiles>
See our Sonarcloud Dashboard.