Migrated repository
Go to file
2017-11-05 15:37:54 +04:00
findbugs PI-21 Set up findbugs and PMD for Platform (master) - added bug pattern to level 4 html findbugs report 2017-05-18 12:01:45 +04:00
gradle/wrapper PL-9800 Use Gradle 4.2 - Use Gradle 3.4 before 6.8 release 2017-10-09 10:19:21 +04:00
modules PL-9973 Exception is thrown if text field with description is expanded 2017-11-03 19:13:18 +04:00
.gitattributes PL-9982 Normalize all the line endings 2017-11-05 15:37:54 +04:00
.gitignore PL-9404 New Authentication subsystem 2017-09-26 19:14:21 +04:00
.travis.yml PI-30 Disable findbugs checks in Travis CI due to OOM in Travis 2017-07-19 17:46:42 +04:00
build.gradle PL-9863 Branch 6.7 2017-10-17 00:41:02 +04:00
CLA.md PL-9259 Add contributor license agreement to cuba and cuba-gradle-plugin sources 2017-06-14 18:22:52 +04:00
CONTRIBUTING.md PL-9397 Guide - Contributing to the platform 2017-07-19 17:25:57 +04:00
gradlew PL-8330 Travis CI build 2016-12-09 13:40:55 +04:00
gradlew.bat PL-8330 Travis CI build 2016-12-09 13:40:55 +04:00
LICENSE.txt Add license and readme files 2016-03-26 17:22:31 +04:00
README.md PL-9863 Branch 6.7 2017-10-17 00:41:02 +04:00
settings.gradle PL-8550 Deploy Polymer client in single WAR (Jelastic) 2017-07-07 16:33:48 +04:00

CUBA Platform

license Build Status Join the chat at https://gitter.im/cuba-platform/cuba

CUBA Platform is a high level framework for rapid development of enterprise applications with rich web interface.

The simplest way to start using the platform is to download CUBA Studio and create a new project in it. A released version of the platform will be downloaded automatically from the artifact repository.

You can also build a snapshot version of the platform from the source code and use it in your project.

To contribute, first refer to Contributing Code for general instructions and requirements for contributing code to the platform.

Building from Source

In order to build the platform from source, you need to install the following:

Let's assume that you have cloned CUBA Gradle Plugin and CUBA into the following directories:

work/
    cuba/
    cuba-gradle-plugin/

Open terminal in the work directory and run the following command to build and install the plugin into your local Maven repository (~/.m2):

cd cuba-gradle-plugin
gradlew install

After that, go to the CUBA directory and build and install it with the same command:

cd ../cuba
gradlew install

Using Snapshot Version

Edit the build.gradle file of your project. Change the ext.cubaVersion property and add mavenLocal() to the repositories section, for example:

buildscript {
    ext.cubaVersion = '6.8-SNAPSHOT'
    repositories {
        mavenLocal()
        maven { ...

That's all. Now you can generate IDE project files and build and deploy your application based on the snapshot version of the platform from your local repository:

gradlew idea
gradlew deploy

Third-party dependencies

The platform uses a number of forked third-party libraries. They can be found in the following source code repositories:

All dependencies are also located in our artifacts repository, so you don't have to build them from sources in order to build and use the platform.