Apache causeway

Clone this repo:

Branches

  1. 0c661a5 reverts rename of the docker image by danhaywood · 5 weeks ago master
  2. 32a91e6 updates README, is all by danhaywood · 5 weeks ago
  3. 9814155 renames DemoApp to ReferenceApp etc by danhaywood · 5 weeks ago
  4. 5839f2f renames DemoApp -> ReferenceApp by danhaywood · 5 weeks ago
  5. 3ffc19e pom fix: revert removal of duplicated version line by andi-huber · 5 weeks ago

Build Referenceapp (CI Nightly)

You can explore the Apache Causeway™ programming model through the reference app, which illustrates many of the framework's annotations and programming conventions.

The app is available as a Docker image.

  • to run the JPA variant:

    docker pull apache/causeway-app-referenceapp-jpa:latest
    docker run -p 8080:8080 apache/causeway-app-referenceapp-jpa:latest
    
  • to run the JDO variant:

    docker pull apache/causeway-app-referenceapp-jdo:latest
    docker run -p 8080:8080 apache/causeway-app-referenceapp-jdo:latest
    

... then navigate to http://localhost:8080

To build

Prereqs:

  • mvnd 3.6.x
  • Java 11

Building:

  • To build the JPA variant:

    mvnd -Dwicket-jdo install
    
  • To build the JDO variant:

    mvnd -Dwicket-jdo install