This project has retired. For details please refer to its Attic page.
Zest™ Build System
Zest™
Introduction
Tutorials
Javadoc
Samples
Core
Libraries
Extensions
Tools
Glossary 

Zest™ Build System

This tutorial is intended for developpers who want to build the Zest™ SDK themselves. It describe the Zest™ SDK Build System from compilation to publication of artifacts for consumption by other applications.

If instead you want to setup your project build system to depend on modules of the Zest™ SDK see the dedicated tutorial.

Gradle

Note

All major Java IDEs have great Gradle support. Visit the Gradle Tooling page to learn how to import the Zest™ SDK build into your favorite IDE.

Zest™ community migrated away from Maven after several years of frustration, especially around release management, versioning and cross-module dependency resolution issues, in Feb 2011. The tool of choice is now Gradle, and it doesn’t require any installation, there are gradlew and gradlew.bat in the root folder of the Zest™ SDK that will bootstrap Gradle if not done so already.

If you are new to Gradle, you should keep the documentation at hands.

Build System configuration is done through Gradle properties. This can be done in many ways, see Gradle properties and system properties.

Root project tasks

The Zest™ SDK root project has tasks that work with the whole SDK. The default build, triggered when running gradle without any command line arguments, compiles the code and run the tests, but nothing else. A quick way to check that nothing broke.

Here are some of theses global tasks we defined:

goOffline
Resolve, download and cache all needed dependencies. Useful to go offline.
clean
Clean up of all build output and restore the code base to a fresh state.
check
Run the tests and other checks like checkstyle. Reports are generated in build/reports.
install
Is roughly the same as Maven’s install goal. It produces the test reports, javadocs and installs all the Jars into the local disk repository, for consumption by other applications.
buildAll
Produces all the archives, javadocs, manuals and website content. The output is generated to build.
release
Uploads the release artifacts to the distribution servers and creates the release output into the build/distributions directory.

Submodules tasks

In addition to that, some submodules have specific tasks. To see all available tasks on a submodule issue the following command:

./gradlew -p tests/performance tasks

This example will output all gradle tasks available in the tests/performance module where you should find the testPerf task that run the Zest™ performance test suite.

Versions

By default, the build system produces a "zero build". It means that there is no version assigned to the build, and a "0" is used in the produced artifacts. This is due to our disagreement (with Maven community) that the "next" version name/number is known prior to the release. This is in our opinion a delayed decision. To build a particular version, you specify a version property on the command-line, like

./gradlew -Dversion=2.0-FLAVOUR install

If a version property is not defined, the build system will refuse to make a release and upload.

Tests

Note

See the Zest™ Continuous Integration for current tests results

Unit and integration tests are located near the code under test. You’ll find theses tests across the whole SDK.

Unit tests requiring external services

Among unit tests, some require an external service to be run. For example, the MongoDB EntityStore extension requires an actual MongoDB server to run its tests.

Note

The HTML test reports generated by Gradle show skipped tests.

All thoses tests should be part of the default build and check if the service is available at its default location on localhost and skip if not. This is easily achieved using JUnit assumptions.

We’ll list here services that the unit tests will use if available.

  • Memcached, ASCII protocol, no authentication on localhost:4444 for extensions/cache-memcache
  • MongoDB without authentication on localhost:27017 for extensions/entitystore-mongodb
  • Riak without authentication on localhost:4444 for extensions/entitystore-riak
  • Redis without authentication on localhost:4444 for extensions/entitystore-redis
  • PostgreSQL for extensions/entitystore-sql and extensions/indexing-sql (need setup, see test source)
  • MySQL for extensions/entitystore-sql (need setup, see test source)
Performance tests

Performance tests provide performance mesurements for typical Zest™ use cases. They are not part of the default build and are located in the tests/performance directory of the SDK.

They can be run with the following Gradle command:

./gradlew :org.qi4j.tests:org.qi4j.test.performance:testPerf

Results will then be available in the test reports.

Documentation generation

The build generates a documentation minisite:

./gradlew -p manual website

Output is in ~/manual/build/docs/website.

You’ll need Asciidoc and docbook-xsl installed.

Build for releases

Important

Remember that if a version property is not defined, the build system will refuse to make a release and upload.

The Zest™ SDK build system is setup for an easy release process. This is very useful to the Zest™ Core Team but can also be useful to third parties that want to cut a in-house release. In this regard, we try to make every aspect of the release process usable for such cases.

The following sections describe various aspects of the release process. By default you need to have a proper PGP setup, see below.

Release Criteria

The Zest™ SDK modules are of varying maturity level and we try to maintain a STATUS (dev-status.xml) file indicating how good the codebase, documentation and unit tests are for each of the modules. This is highly subjective and potentially different individuals will judge this differently, but at least it gives a ballpark idea of the situation for our users.

The Zest™ SDK build system use the values from the dev-status.xml files to filter out non-releasable modules out for the javadocs and uploadArchives root project tasks. Moreover, the release task ensure that no releasable module depends on module(s) that don’t fit the release criteria and throw a detailed exception if need be.

This can be relaxed by adding -x checkReleaseSpec arguments to gradle invocation.

Signing

Artifact signing is done using PGP. You need to provide Gradle the following properties, ~/.gradle/gradle.properties is a good place:

signing.keyId=FB751943
signing.password=foobar
signing.secretKeyRingFile=/home/foo/.gnupg/secring.gpg

You can skip the signing process by adding -x signArchives arguments to gradle invocation.

Artifact Upload

Artifact upload behavior depends on the version assigned to the build.

By default RELEASES are signed, SNAPSHOTS are not. Signing can be turned on or off by setting the uploadSigned property to false.

By default RELEASES must satisfy ReleaseSpecification, SNAPSHOT don’t. ReleaseSpecification usage can be turned on or off by setting the uploadReleaseSpec property to false.

By default RELEASES and SNAPHOTS are uploaded using HTTP. Used Wagon can be overriden by setting the uploadWagon property.

By default RELEASES and SNAPSHOTS are uploaded to the Apache Nexus. Target repository can be overriden by setting the uploadRepository property.

No username/password is provided by default. If needed set them using the uploadUsername and uploadPassword properties.

For example here is how to deploy all artifacts as unsigned SNAPSHOTs to a given repository:

./gradlew uploadArchives -Dversion=3.2.1-SNAPSHOT -PuploadReleaseSpec=false \
    -PuploadWagon=what:ever:wagon -PuploadRepository=http://what.ever.repository/url \
    -PuploadUsername=foo -PuploadPassword=bar

And here is how to deploy a signed release to the local filesystem:

./gradlew uploadArchives -Dversion=3.2.1 -PuploadRepository=file:///path/to/local/repository

See the Gradle documentation about supported protocols.