UI-Component Sets
Project Documentation

Download

Release

Use the links below to download a distribution of Apache MyFaces Orchestra from one of our mirrors. It is good practice to verify the integrity of the distribution files.

You will be prompted for a mirror - if the file is not found on yours, please be patient, as it may take 24 hours to reach all mirrors.

Apache MyFaces Orchestra is distributed as a zip archive (for Windows) and as a tar.gz archive (for UNIX). The contents are the same. Please note that the tar.gz archives contain file names longer than 100 characters and have been created using GNU tar extensions. Thus they must be untarred with a GNU compatible version of tar.

Apache MyFaces Orchestra Core 1.5 Distribution

Archive Mirrors Checksum Signature
Apache MyFaces Orchestra Core 1.5 (tar.gz) myfaces-orchestra-core-1.5.tar.gz myfaces-orchestra-core-1.5.tar.gz.md5 myfaces-orchestra-core-1.5.tar.gz.asc
Apache MyFaces Orchestra Core 1.5 (zip) myfaces-orchestra-core-1.5.zip myfaces-orchestra-core-1.5.zip.md5 myfaces-orchestra-core-1.5.zip.asc
Apache MyFaces Orchestra Core12 1.5 (tar.gz) myfaces-orchestra-core12-1.5.tar.gz myfaces-orchestra-core12-1.5.tar.gz.md5 myfaces-orchestra-core12-1.5.tar.gz.asc
Apache MyFaces Orchestra Core12 1.5 (zip) myfaces-orchestra-core12-1.5.zip myfaces-orchestra-core12-1.5.zip.md5 myfaces-orchestra-core12-1.5.zip.asc
Apache MyFaces Orchestra Core20 1.5 (tar.gz) myfaces-orchestra-core20-1.5.tar.gz myfaces-orchestra-core20-1.5.tar.gz.md5 myfaces-orchestra-core20-1.5.tar.gz.asc
Apache MyFaces Orchestra Core20 1.5 (zip) myfaces-orchestra-core20-1.5.zip myfaces-orchestra-core20-1.5.zip.md5 myfaces-orchestra-core20-1.5.zip.asc

Apache MyFaces Orchestra Core15 1.0 Distribution (Use it with 1.3.1 or earlier)

Archive Mirrors Checksum Signature
Apache MyFaces Orchestra Core 1.3.1 (tar.gz) myfaces-orchestra-core-1.3.1.tar.gz myfaces-orchestra-core-1.3.1.tar.gz.md5 myfaces-orchestra-core-1.3.1.tar.gz.asc
Apache MyFaces Orchestra Core 1.3.1 (zip) myfaces-orchestra-core-1.3.1.zip myfaces-orchestra-core-1.3.1.zip.md5 myfaces-orchestra-core-1.3.1.zip.asc
Apache MyFaces Orchestra Core15 1.0 (tar.gz) myfaces-orchestra-core15-1.0.tar.gz myfaces-orchestra-core15-1.0.tar.gz.md5 myfaces-orchestra-core15-1.0.tar.gz.asc
Apache MyFaces Orchestra Core15 1.0 (zip) myfaces-orchestra-core15-1.0.zip myfaces-orchestra-core15-1.0.zip.md5 myfaces-orchestra-core15-1.0.zip.asc

Download direct from the Maven repositories

Use our maven repository to download the latest released jarfiles: http://repo1.maven.org/maven2/org/apache/myfaces/orchestra

Use our maven snapshot repository to download the latest snapshot jarfiles: http://repository.apache.org/content/groups/snapshots/org/apache/myfaces/orchestra

Build from source

The easiest way is to download the Apache MyFaces codebase and build them all

# svn checkout https://svn.apache.org/repos/asf/myfaces/current myfaces
# cd myfaces
# mvn install
        

This will create "target" directories within the structure and create a jar file per module. Simply copy it from there or from the /home/user/.m2/repository directory.

Maven 2

Add the following xml snipped to your pom.xml. Note: core15 is optional.

<dependency>
<groupId>org.apache.myfaces.orchestra</groupId>
<artifactId>myfaces-orchestra-core</artifactId>
<version>wanted_version_number</version>
</dependency>

<dependency>
<groupId>org.apache.myfaces.orchestra</groupId>
<artifactId>myfaces-orchestra-core15</artifactId>
<version>wanted_version_number</version>
</dependency>
        

If you'd like to work with the nightly builds it is also required that you have the Apache Maven Snapshot Repository (https://repository.apache.org/content/groups/snapshots) configured.