/* * Copyright (c) 2008-2016 Haulmont. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ buildscript { ext.cubaVersion = '6.5-SNAPSHOT' ext.cubaVersion = rootProject.hasProperty('buildVersion') ? rootProject['buildVersion'] : cubaVersion println("CUBA Platform Version ${ext.cubaVersion}") println("") repositories { mavenLocal() maven { credentials { username System.getenv('HAULMONT_REPOSITORY_USER') ?: 'cuba' password System.getenv('HAULMONT_REPOSITORY_PASSWORD') ?: 'cuba123' } url System.getenv('HAULMONT_REPOSITORY_URL') ?: 'https://repo.cuba-platform.com/content/groups/work' } } dependencies { classpath group: 'com.haulmont.gradle', name: 'cuba-plugin', version: cubaVersion } } apply(plugin: 'base') apply(plugin: 'maven') apply(plugin: 'idea') apply(plugin: 'cuba') bom.load file('modules/global/src/com/haulmont/cuba/bom.properties') cuba { artifact { group = 'com.haulmont.cuba' version = project.cubaVersion.replace('-SNAPSHOT', '') isSnapshot = project.cubaVersion.endsWith('-SNAPSHOT') } ide { vcs = 'Git' copyright = '''Copyright (c) 2008-$today.year Haulmont. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.''' } } def sharedLibModule = project(':cuba-shared-lib') def globalModule = project(':cuba-global') def coreModule = project(':cuba-core') def clientModule = project(':cuba-client') def guiModule = project(':cuba-gui') def desktopModule = project(':cuba-desktop') def portalModule = project(':cuba-portal') def restApiModule = project(':cuba-rest-api') def webAuthModule = project(':cuba-web-auth') def webToolkitModule = project(':cuba-web-toolkit') def webModule = project(':cuba-web') def idpModule = project(':cuba-idp') def uberJarModule = project(':cuba-uberjar') def webModuleThemesModule = project(':cuba-web-themes') def coreTestsModule = project(':cuba-core-tests') def clientTestsModule = project(':cuba-client-tests') configure([sharedLibModule, globalModule, coreModule, clientModule, guiModule, webModule, desktopModule, portalModule, webAuthModule, restApiModule, idpModule, uberJarModule]) { apply(plugin: 'java') apply(plugin: 'idea') apply(plugin: 'maven') apply(plugin: 'cuba') dependencies { testCompile(bom['org.jmockit:jmockit']) testCompile(bom['junit:junit']) } task sourceJar(type: Jar) { from file('src') classifier = 'sources' } artifacts { archives sourceJar } jar { manifest { attributes("Implementation-Version": cubaVersion) } } test { maxHeapSize = '256m' } javadoc { // move to plugin ? options.addStringOption("sourcepath", "") } } // configure web toolkit module configure(webToolkitModule) { apply(plugin: 'java') apply(plugin: 'idea') apply(plugin: 'maven') apply(plugin: 'cuba') task sourceJar(type: Jar) { from file('src') classifier = 'sources' } artifacts { archives sourceJar } javadoc { // move to plugin ? options.addStringOption("sourcepath", "") } } configure(sharedLibModule) { dependencies { compile(bom['ch.qos.logback:logback-classic']) compile(bom['org.slf4j:log4j-over-slf4j']) jdbc(bom['org.postgresql:postgresql']) jdbc(bom['org.hsqldb:hsqldb']) } } configure(globalModule) { dependencies { compile(bom['commons-logging:commons-logging']) compile(bom['org.codehaus.groovy:groovy-all']) compile(bom['commons-lang:commons-lang']) compile(bom['commons-collections:commons-collections']) compile(bom['commons-io:commons-io']) compile(bom['commons-codec:commons-codec']) compile(bom['commons-cli:commons-cli']) compile(bom['org.apache.httpcomponents:httpclient']) // simplify version management for selenium compile(bom['org.apache.commons:commons-pool2']) compile(bom['org.apache.commons:commons-compress']) compile(bom['dom4j:dom4j']) compile(bom['com.sun.mail:javax.mail']) compile(bom['ch.qos.logback:logback-classic']) compile(bom['org.slf4j:log4j-over-slf4j']) compile(bom['org.perf4j:perf4j']) compile(bom['com.google.code.findbugs:jsr305']) compile(bom['javax:javaee-api']) compile(bom['antlr:antlr']) compile(bom['org.antlr:antlr-runtime']) compile(bom['com.google.guava:guava']) compile(bom['org.eclipse.persistence:javax.persistence']) compile(bom['org.eclipse.persistence:commonj.sdo']) compile(bom['org.glassfish:javax.json']) compile(bom['com.haulmont.thirdparty:eclipselink']) compile(bom['org.freemarker:freemarker']) compile(bom['aopalliance:aopalliance']) compile(bom['org.springframework:spring-core']) compile(bom['org.springframework:spring-beans']) compile(bom['org.springframework:spring-context']) compile(bom['org.springframework:spring-web']) compile(bom['com.esotericsoftware:kryo-shaded']) compile(bom['de.javakaffee:kryo-serializers']) { exclude(group: 'com.esotericsoftware', module: 'kryo') } compile(bom['org.json:json']) compile(bom['com.google.code.gson:gson']) compile(bom['org.hibernate:hibernate-validator']) compile(bom['org.glassfish.web:javax.el']) provided(bom['org.apache.tomcat:tomcat-servlet-api']) } task generateReleaseTimestamp(type: CubaReleaseTimeStamp) { releaseTimeStampPath = "$buildDir/classes/main/com/haulmont/cuba/core/global/release.timestamp" releaseNumberPath = "$buildDir/classes/main/com/haulmont/cuba/core/global/release.number" } task enhance(type: CubaEnhancing) task filterDummyEntities { ext.srcFile1 = file('src/base-persistence.xml') ext.srcFile2 = file('src/cuba-persistence.xml') ext.dstDir = file("$buildDir/tmp/filtered") ext.dstFile1 = new File(ext.dstDir, "base-persistence.xml") ext.dstFile2 = new File(ext.dstDir, "cuba-persistence.xml") inputs.file srcFile1 inputs.file srcFile2 outputs.file dstFile1 outputs.file dstFile2 doLast { dstDir.mkdirs() dstFile1.write(srcFile1.readLines().findAll{ !it.contains('.entity.dummy.') }.join('\n')) dstFile2.write(srcFile2.readLines().findAll{ !it.contains('.entity.dummy.') }.join('\n')) } } jar { exclude '**/entity/dummy/*' exclude { it.file == file("$buildDir/resources/main/base-persistence.xml") } exclude { it.file == file("$buildDir/resources/main/cuba-persistence.xml") } from "$buildDir/tmp/filtered" manifest { attributes('App-Component-Id': cuba.artifact.group) attributes('App-Component-Version': cubaVersion) } } jar.dependsOn filterDummyEntities sourceJar { exclude '**/entity/dummy/*' exclude { (it.file.name == 'base-persistence.xml' || it.file.name == 'cuba-persistence.xml') && sourceSets.main.java.srcDirs.contains(it.file.parentFile) } from "$buildDir/tmp/filtered" } sourceJar.dependsOn filterDummyEntities } configure(coreModule) { configurations { dbscripts } dependencies { compile(globalModule) compile(sharedLibModule) compile(bom['javax.validation:validation-api']) compile(bom['com.haulmont.thirdparty:xstream']) runtime(bom['xpp3:xpp3_min']) runtime(bom['xmlpull:xmlpull']) compile(bom['org.ocpsoft.prettytime:prettytime-nlp']) compile(bom['org.jgroups:jgroups']) compile(bom['org.aspectj:aspectjrt']) compile(bom['org.aspectj:aspectjweaver']) compile(bom['org.mybatis:mybatis']) compile(bom['org.mybatis:mybatis-spring']) compile(bom['org.springframework:spring-context-support']) compile(bom['org.springframework:spring-orm']) compile(bom['org.springframework:spring-tx']) compile(bom['org.springframework:spring-webmvc']) compile(bom['org.apache.poi:poi']) // POI is actually not required by core, but remains here to simplify dependencies for reports project compile(bom['org.jsoup:jsoup']) // simplify version management for fts provided(bom['org.apache.tomcat:tomcat-servlet-api']) jdbc(bom['org.postgresql:postgresql']) jdbc(bom['org.hsqldb:hsqldb']) testCompile(bom['org.apache.commons:commons-dbcp2']) testRuntime(bom['org.apache.tomcat:tomcat-servlet-api']) testRuntime(bom['org.hsqldb:hsqldb']) testRuntime(bom['org.postgresql:postgresql']) } task enhanceTestModel(type: CubaTestEnhancing) test { scanForTestClasses = false includes = ['**/*Test.class'] jvmArgs '-XX:-UseSplitVerifier' systemProperties = [ 'logback.configurationFile': System.getProperty('logback.configurationFile') ] } task testEntityCache(type: Test) { scanForTestClasses = false includes = ['com/haulmont/cuba/entity_cache/EntityCacheTestSuite.class'] } assembleDbScripts { moduleAlias = '10-cuba' } task deploy(dependsOn: assemble, type: CubaDeployment) { appName = 'cuba-core' appJars('cuba-global', 'cuba-core') } def hsqlDbName = 'cubadb' task startDb(description: 'Starts local HSQLDB server', type: CubaHsqlStart) { dbName = hsqlDbName } task stopDb(description: 'Stops local HSQLDB server', type: CubaHsqlStop) { dbName = hsqlDbName } task removeDb(description: 'Removes local HSQL database', type: Delete) { delete new File("$rootProject.projectDir/data") } task killDb(description: 'Kill local HSQLDB server process running on port 9001', type: CubaKillProcess) { port = 9001 } task createDb(dependsOn: assembleDbScripts, description: 'Creates local HSQL database', type: CubaDbCreation) { dbms = 'hsql' dbName = hsqlDbName dbUser = 'sa' dbPassword = '' } task createTestDb(dependsOn: assembleDbScripts, description: 'Creates local HSQL database', type: CubaDbCreation) { dbms = 'hsql' dbName = hsqlDbName dbUser = 'sa' dbPassword = '' auxiliaryScript = file('test/com/haulmont/cuba/testmodel/create-db.sql') } } configure(coreTestsModule) { apply(plugin: 'java') apply(plugin: 'maven') apply(plugin: 'cuba') buildDir = file('../build/core-tests') sourceSets { main { java { srcDir '.' include 'com/haulmont/cuba/core/CubaTestCase.java' include 'com/haulmont/cuba/testsupport/*.java' include '*' } resources { srcDir '.' } } } dependencies { compile(coreModule) compile(bom['org.apache.commons:commons-dbcp2']) compile(bom['org.jmockit:jmockit']) compile(bom['junit:junit']) } task sourceJar(type: Jar) { from file('.') include 'com/haulmont/cuba/core/CubaTestCase*.class' include 'com/haulmont/cuba/core/CubaTestCase*.java' include 'com/haulmont/cuba/testsupport/*' include '*' classifier = 'sources' } artifacts { archives sourceJar } } configure(clientModule) { dependencies { compile(globalModule) compile(bom['org.jsoup:jsoup']) // simplify version management for fts } } configure(clientTestsModule) { apply(plugin: 'java') apply(plugin: 'maven') apply(plugin: 'cuba') buildDir = file('../build/client-tests') sourceSets { main { java { srcDir '.' } resources { srcDir '.' } } } dependencies { compile(clientModule) compile(bom['org.jmockit:jmockit']) compile(bom['junit:junit']) } task sourceJar(type: Jar) { from file('.') classifier = 'sources' } artifacts { archives sourceJar } } configure(guiModule) { dependencies { compile(clientModule) compile(bom['org.apache.poi:poi']) testCompile(clientModule.sourceSets.test.output) } task enhance(type: CubaEnhancing) test { scanForTestClasses = false includes = ['**/*Test.class'] exclude 'com/haulmont/cuba/gui/components/*ComponentTest.class' exclude 'com/haulmont/cuba/gui/components/*FieldTest.class' } } configure(webModule) { configurations { themes } dependencies { compile(sharedLibModule) compile(guiModule) compile(webAuthModule) compile(restApiModule) compile(idpModule) compile(bom['commons-fileupload:commons-fileupload']) compile(bom['org.springframework:spring-webmvc']) compile(bom['com.vaadin:vaadin-push']) compile(bom['com.vaadin:vaadin-shared']) compile(bom['com.vaadin:vaadin-server']) { exclude(group: 'com.vaadin', module: 'vaadin-sass-compiler') } /* Vaadin addons */ compile(bom['com.haulmont.thirdparty:popupbutton']) compile(bom['org.vaadin.addons:aceeditor']) compile(bom['org.vaadin.addons:dragdroplayouts']) compile(bom['com.vaadin.addon:vaadin-context-menu']) provided(bom['org.apache.tomcat:tomcat-servlet-api']) themes(bom['com.vaadin:vaadin-themes']) testCompile(clientModule.sourceSets.test.output) testCompile(guiModule.sourceSets.test.output) testRuntime(bom['org.apache.tomcat:tomcat-servlet-api']) } task enhance(type: CubaEnhancing) jar { with copySpec { from sourceSets.main.allJava include "com/haulmont/cuba/web/toolkit/ui/client/**" } } task buildScssThemes(type: CubaWebScssThemeCreation) { themes = ['halo', 'havana'] // compress = true // sprites = true // cleanup = true } assemble.dependsOn buildScssThemes task deployThemes(type: CubaDeployThemeTask, dependsOn: buildScssThemes) { } task buildHalo(type: CubaWebScssThemeCreation) { themes = ['halo'] // compress = true // sprites = true // cleanup = true } task deployHalo(type: Copy, dependsOn: buildHalo) { from file("$webModule.buildDir/web/VAADIN/themes/halo") into "${cuba.tomcat.dir}/webapps/cuba/VAADIN/themes/halo" exclude '**/web.xml' } task buildHavana(type: CubaWebScssThemeCreation) { themes = ['havana'] // compress = true // sprites = true // cleanup = true } task deployHavana(type: Copy, dependsOn: buildHavana) { from file("$webModule.buildDir/web/VAADIN/themes/havana") into "${cuba.tomcat.dir}/webapps/cuba/VAADIN/themes/havana" exclude '**/web.xml' } def webOutDir = file("$buildDir/web") task webArchive(dependsOn: buildScssThemes, type: Zip) { from file('web') from webOutDir exclude '**/web.xml', '**/app.properties' classifier = 'web' } artifacts { archives webArchive } task deploy(dependsOn: assemble, type: CubaDeployment) { appName = 'cuba' appJars('cuba-global', 'cuba-client', 'cuba-gui', 'cuba-web', 'cuba-web-auth', 'cuba-rest-api', 'cuba-idp') } } configure(webModuleThemesModule) { apply(plugin: 'java') apply(plugin: 'maven') apply(plugin: 'cuba') appModuleType = 'web-themes' buildDir = file('../build/scss-themes') sourceSets { main { java { srcDir '.' } resources { srcDir '.' } } } dependencies { compile(bom['com.vaadin:vaadin-themes']) } } configure(webAuthModule) { dependencies { compile(globalModule) compile(bom['org.springframework:spring-tx']) compile(bom['org.springframework.ldap:spring-ldap-core']) { exclude(group: 'org.slf4j', module: 'jcl-over-slf4j') // removed because it defines its own Log4j LogFactory via JDK services mechanism } provided(bom['org.apache.tomcat:tomcat-servlet-api']) } } configure(webToolkitModule) { dependencies { compile(webModule) compile(bom['com.vaadin:vaadin-client']) { exclude(group: 'com.vaadin.external.gwt', module: 'gwt-elemental') } compile(bom['com.vaadin:vaadin-client-compiler']) { exclude(group: 'com.vaadin.external.gwt', module: 'gwt-elemental') exclude(group: 'com.vaadin.external.gwt', module: 'gwt-dev') } compile(bom['com.google.gwt:gwt-elemental']) compile(bom['com.google.gwt:gwt-dev']) runtime(bom['org.apache.tomcat:tomcat-servlet-api']) } task buildWidgetSet(type: CubaWidgetSetBuilding) { widgetSetClass = 'com.haulmont.cuba.web.toolkit.ui.WidgetSet' // Strict strict = true // Debug flags: printCompilerClassPath = false logLevel = 'INFO' // Parallel thread count workers = 2 // Performance and widgetset size: style = 'OBF' // 'OBF' or 'PRETTY' or 'DETAILED' disableCastChecking = false optimize = 9 draft = false // Compiler JVM xmx = '-Xmx512m' xss = '-Xss8m' xxMPS = '-XX:MaxPermSize=256m' } task buildDebugWidgetSet(type: CubaWidgetSetBuilding) { widgetSetsDir = "$project.buildDir/web-debug/VAADIN/widgetsets" widgetSetClass = 'com.haulmont.cuba.web.toolkit.ui.WidgetSet' // Performance and widgetset size: style = 'PRETTY' } task debugWidgetSet(type: CubaWidgetSetDebug) { widgetSetClass = 'com.haulmont.cuba.web.toolkit.ui.WidgetSet' } jar { from sourceSets.main.allJava } task webArchive(dependsOn: buildWidgetSet, type: Zip) { from file("$buildDir/web") classifier = 'web' } task webDebugArchive(dependsOn: buildDebugWidgetSet, type: Zip) { from file("$buildDir/web-debug") classifier = 'debug' } artifacts { archives webArchive if (!cuba.artifact.isSnapshot) { archives webDebugArchive } } task deploy(dependsOn: buildWidgetSet) { doLast { delete { "$cuba.tomcat.dir/webapps/cuba/VAADIN/widgetsets" } copy { from "$buildDir/web" into "$cuba.tomcat.dir/webapps/cuba" } } } task cleanWidgetSet(dependsOn: clean) { } } configure(desktopModule) { apply(plugin: 'application') mainClassName = 'com.haulmont.cuba.desktop.App' dependencies { compile(guiModule) compile(bom['com.miglayout:miglayout-swing']) compile(bom['com.fifesoft:rsyntaxtextarea']) compile(bom['com.haulmont.thirdparty:glazedlists']) compile(bom['com.haulmont.thirdparty:swingx-core']) testCompile(clientModule.sourceSets.test.output) testCompile(guiModule.sourceSets.test.output) testRuntime(bom['org.apache.tomcat:tomcat-servlet-api']) } // disable building of *.tar and *.zip artifacts by default assemble task configurations.archives.artifacts.removeAll { it.file =~ 'tar' || it.file =~ 'zip' } } configure(restApiModule) { dependencies { compile(globalModule) compile(clientModule) compile(sharedLibModule) compile(bom['org.springframework:spring-webmvc']) compile(bom['org.springframework:spring-context-support']) compile(bom['org.json:json']) compile(bom['com.fasterxml.jackson.core:jackson-databind']) compile(bom['com.fasterxml.jackson.dataformat:jackson-dataformat-yaml']) compile(bom['commons-fileupload:commons-fileupload']) compile(bom['org.springframework.security:spring-security-core']) compile(bom['org.springframework.security:spring-security-web']) compile(bom['org.springframework.security:spring-security-config']) compile(bom['org.springframework.security.oauth:spring-security-oauth2']) { exclude(group: 'org.springframework.security') } provided(bom['org.apache.tomcat:tomcat-servlet-api']) testCompile(clientModule.sourceSets.test.output) } } configure(portalModule) { dependencies { compile(globalModule) compile(clientModule) compile(sharedLibModule) compile(restApiModule) compile(bom['org.springframework:spring-webmvc']) compile(bom['org.springframework:spring-context-support']) compile(bom['org.springframework:spring-tx']) compile(bom['org.springframework:spring-jdbc']) compile(bom['org.springframework.security:spring-security-core']) compile(bom['org.springframework.security:spring-security-web']) compile(bom['org.springframework.security:spring-security-config']) compile(bom['org.springframework.security:spring-security-taglibs']) compile(bom['org.json:json']) compile(bom['org.thymeleaf:thymeleaf']) compile(bom['org.thymeleaf:thymeleaf-spring4']) compile(bom['org.thymeleaf.extras:thymeleaf-extras-springsecurity4']) provided(bom['org.apache.tomcat:tomcat-servlet-api']) testCompile(clientModule.sourceSets.test.output) } test { scanForTestClasses = false includes = ['**/*Test.class'] } task deploy(dependsOn: assemble, type: CubaDeployment) { appName = 'cuba-portal' appJars('cuba-global', 'cuba-client', 'cuba-portal', 'cuba-rest-api') } } configure(idpModule) { dependencies { compile(globalModule) compile(clientModule) compile(sharedLibModule) compile(bom['org.springframework:spring-webmvc']) compile(bom['org.springframework:spring-context-support']) compile(bom['org.springframework.security:spring-security-core']) compile(bom['org.springframework.security:spring-security-config']) compile(bom['org.springframework.security:spring-security-web']) testCompile(clientModule.sourceSets.test.output) provided(bom['org.apache.tomcat:tomcat-servlet-api']) } task webArchive(type: Zip) { from file('web') classifier = 'web' } artifacts { archives webArchive } task deploy(dependsOn: assemble) { doLast { delete { "$cuba.tomcat.dir/webapps/cuba/idp" } copy { from "$projectDir/web" into "$cuba.tomcat.dir/webapps/cuba" } } } } configure(uberJarModule) { dependencies { compile(bom['org.eclipse.jetty:jetty-server']) compile(bom['org.eclipse.jetty:jetty-webapp']) compile(bom['org.eclipse.jetty:jetty-plus']) compile(bom['org.eclipse.jetty:jetty-jndi']) compile(bom['commons-cli:commons-cli']) compile(bom['commons-io:commons-io']) compile(bom['com.google.guava:guava']) } } task restart(dependsOn: ['stop', ':cuba-core:deploy', ':cuba-web:deploy', ':cuba-web-toolkit:deploy'], description: 'Redeploys applications and restarts local Tomcat') { doLast { ant.waitfor(maxwait: 6, maxwaitunit: 'second', checkevery: 2, checkeveryunit: 'second') { not { socket(server: 'localhost', port: '8787') } } start.execute() } }