Migrated repository
Go to file
2017-04-18 20:01:25 +04:00
gradle/wrapper PL-8330 Travis CI build 2016-12-09 13:40:55 +04:00
modules PL-8971 Unable to select screen with DataGrid when adjusting Visibility of dynamic attribute 2017-04-18 20:01:25 +04:00
.gitignore PL-8338 Client-tier bean for working with FileStorage using streams 2017-04-04 12:41:22 +04:00
.travis.yml PL-8486 Fix Travis-CI build for Release 6.5 2017-01-27 15:42:13 +04:00
build.gradle PL-7896 Uber-JAR deployment (add connection pool support) 2017-04-06 10:30:40 +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
README.md PL-8402 Gitter README.md badge 2016-12-27 19:30:08 +04:00
settings.gradle PL-7896 Uber-JAR deployment 2017-03-29 11:34:56 +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.

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
gradle install

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

cd ../cuba
gradle 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.2-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:

gradle idea
gradle 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.