Migrated repository
Go to file
Andrey Subbotin 85c5e9f4b6 Support Java 9 and 10 for CUBA #910
Update commons-lang3 dependency to 3.7
2018-06-07 12:33:24 +04:00
.github Update issue_template.md 2018-04-28 11:42:13 +04:00
findbugs Exclude SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING from FindBugs 2018-03-12 16:01:24 +04:00
gradle/wrapper Use Gradle 4.8 2018-06-05 19:23:42 +04:00
img Add link to Youtube in Readme (#37) 2018-03-06 20:10:05 +04:00
modules Support Java 9 and 10 for CUBA #910 2018-06-07 12:33:24 +04:00
.gitattributes PL-9982 Convert line endings 2017-11-05 15:58:18 +04:00
.gitignore Ignore classes directory 2018-06-05 18:12:38 +04:00
.travis.yml Restore Travis build 2018-06-07 10:59:45 +04:00
build.gradle Unnecessary spring-security exclude for the spring oauth dependency in the build.grade #942 2018-06-07 11:38:09 +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 Corrrect typo in CONTRIBUTIONS.md (#813) 2018-05-06 18:54:41 +04:00
gradlew PL-9982 Convert line endings 2017-11-05 15:58:18 +04:00
gradlew.bat PL-8330 Travis CI build 2016-12-09 13:40:55 +04:00
LICENSE.txt
README.md Fix logo location 2018-06-03 21:50:11 +04:00
settings.gradle Vaadin 8 #444 2018-06-05 16:06:48 +04:00

CUBA Platform

Java RAD framework for enterprise web applications

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.10-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.