Presentation of JRebirth Application Framework in Dog Fooding way
Latest slides are available on Slideshare
All binaries are stored on our binaries server : http://apps.jrebirth.org/jaf
Latest one are here : http://apps.jrebirth.org/jaf/2.2.0-SNAPSHOT/
Requires Git, Java 8 and Maven.
git clone https://github.com/JRebirth/JRebirth-Tour.git
cd JRebirth-Tour/org.jrebirth.af.presentation.jaf
mvn clean install
You can build RELEASE versions by simply using Maven Central or JCenter repositories to grab all dependencies.
As this project depends on 2 others repositories, if you want to build SNAPSHOT version you have 2 options:
- Use oss.jfrog.org repository into your maven settings to grap SNAPSHOT dependencies
- Build yourself JRebirth-RIA-POM and JRebirth repositories
Maven Settings.xml file to use oss.jfrog.org
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>libs-release</name>
<url>https://oss.jfrog.org/artifactory/libs-release</url>
</repository>
<repository>
<snapshots />
<id>snapshots</id>
<name>libs-snapshot</name>
<url>https://oss.jfrog.org/artifactory/libs-snapshot</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>plugins-release</name>
<url>https://oss.jfrog.org/artifactory/plugins-release</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots</id>
<name>plugins-snapshot</name>
<url>https://oss.jfrog.org/artifactory/plugins-snapshot</url>
</pluginRepository>
</pluginRepositories>
<id>artifactory</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
</settings>