-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started
JJaraM edited this page Mar 31, 2016
·
3 revisions
This tutorial will help you to create an application using chameleon framework.
In this step you will be able to start using chameleon. To see how install chalemeon in Maven please see the Getting Started with Maven guide, or if you prefer to use Gradle please visit Getting Started with Gradle.
After install chameleon framework dependency is nessary to configure the application to work propertly, the first step is configure the main class. So with need to extend the class AbstractChameleonInitializer.
package com.jjm.example.init;
import com.jjm.chameleon.init.AbstractChameleonInitializer;
public class Application extends AbstractChameleonInitializer {
}