cuba/build.gradle

652 lines
22 KiB
Groovy
Raw Normal View History

2011-12-07 19:01:29 +08:00
/*
2011-11-17 16:31:31 +08:00
* Copyright (c) 2011 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
2013-01-15 21:27:25 +08:00
def defaultVersion = '4.0'
def BUILD_VERSION = 'buildVersion'
def BUILD_RELEASE = 'buildRelease'
def BUILD_VCS_NUMBER = 'buildVcsNumber'
2011-11-17 16:31:31 +08:00
allprojects {
ext.artifactGroup = 'com.haulmont.cuba'
ext.artifactVersion = rootProject.hasProperty(BUILD_VERSION) ? rootProject[BUILD_VERSION] : defaultVersion
2013-01-15 21:38:55 +08:00
ext.isSnapshot = !(rootProject.hasProperty(BUILD_RELEASE) && Boolean.valueOf(rootProject[BUILD_RELEASE]))
//ext.tomcatDir = rootDir.absolutePath + '/../tomcat'
2011-11-17 16:31:31 +08:00
}
buildscript {
def cubaPluginVersion = '1.5-SNAPSHOT'
2013-02-06 23:32:13 +08:00
def docPluginVersion = '1.2.0-SNAPSHOT'
def CUBA_PLUGIN_VERSION = 'cubaPluginVersion'
def DOC_PLUGIN_VERSION = 'docPluginVersion'
cubaPluginVersion = rootProject.hasProperty(CUBA_PLUGIN_VERSION) ? rootProject[CUBA_PLUGIN_VERSION] : cubaPluginVersion
docPluginVersion = rootProject.hasProperty(DOC_PLUGIN_VERSION) ? rootProject[DOC_PLUGIN_VERSION] : docPluginVersion
ext.cubaPlugin = [group: 'com.haulmont.gradle', name: 'cuba-plugin', version: cubaPluginVersion]
2011-11-17 16:31:31 +08:00
repositories {
mavenLocal()
maven {
credentials {
username System.getenv('HAULMONT_REPOSITORY_USER')
password System.getenv('HAULMONT_REPOSITORY_PASSWORD')
}
url "http://repository.haulmont.com:8587/nexus/content/groups/work"
}
}
dependencies {
classpath cubaPlugin
2013-02-06 23:32:13 +08:00
classpath group: 'com.haulmont.gradle', name: 'doc-plugin', version: docPluginVersion
2011-11-17 16:31:31 +08:00
}
}
2012-02-21 16:18:28 +08:00
apply(plugin: 'base')
2012-03-07 22:30:40 +08:00
apply(plugin: 'maven')
2011-11-17 16:31:31 +08:00
apply(plugin: 'idea')
apply(plugin: 'cuba')
2012-02-21 16:18:28 +08:00
apply(plugin: 'doc')
2011-11-17 16:31:31 +08:00
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 webToolkitModule = project(':cuba-web-toolkit')
def webModule = project(':cuba-web')
def desktopModule = project(':cuba-desktop')
def uiTestModule = project(':cuba-test-ui')
def portalModule = project(':cuba-portal')
2011-11-17 16:31:31 +08:00
2013-02-21 19:02:54 +08:00
def vaadinVersion = '7.0.1.h.M0'
2013-02-06 23:14:40 +08:00
2011-11-17 16:31:31 +08:00
def servletApi = [group: 'org.apache.tomcat', name: 'servlet-api', version: '6.0.20']
2011-11-23 20:54:47 +08:00
def groovyArtifact = [group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.10']
2011-11-17 16:31:31 +08:00
def asm = [group: 'asm', name: 'asm', version: '3.2']
2012-12-05 21:12:39 +08:00
def poi = [group: 'com.haulmont.thirdparty', name: 'poi', version: '3.7.20121205']
2012-04-28 19:07:00 +08:00
def postgres = [group: 'postgresql', name: 'postgresql', version: '9.1-901.jdbc4']
2011-11-17 16:31:31 +08:00
def hsqldb = [group: 'hsqldb', name: 'hsqldb', version: '1.8.0.10']
configure([sharedLibModule, globalModule, coreModule, clientModule, guiModule, webToolkitModule,
webModule, desktopModule, uiTestModule, portalModule]) {
2011-11-17 16:31:31 +08:00
apply(plugin: 'java')
apply(plugin: 'idea')
apply(plugin: 'maven')
apply(plugin: 'code-quality')
apply(plugin: 'cuba')
dependencies {
compile(group: 'commons-logging', name: 'commons-logging', version: '1.1.1')
compile(group: 'commons-lang', name: 'commons-lang', version: '2.4')
compile(group: 'commons-collections', name: 'commons-collections', version: '3.2.1')
compile(group: 'commons-io', name: 'commons-io', version: '1.4')
2013-02-06 23:32:13 +08:00
compile(group: 'commons-codec', name: 'commons-codec', version: '1.6')
compile(group: 'commons-cli', name: 'commons-cli', version: '1.2')
compile(group: 'commons-pool', name: 'commons-pool', version: '1.5.1')
compile(group: 'dom4j', name: 'dom4j', version: '1.6.1')
compile(group: 'javax.mail', name: 'mail', version: '1.4.1')
compile(group: 'log4j', name: 'log4j', version: '1.2.16')
2013-02-19 22:51:49 +08:00
compile(group: 'org.perf4j', name: 'perf4j', version: '0.9.16')
2013-02-06 23:32:13 +08:00
compile(group: 'com.google.code.findbugs', name: 'jsr305', version: '2.0.1')
compile(group: 'com.haulmont.thirdparty', name: 'javaee-api', version: '6.0.20091228')
compile(group: 'org.codehaus.groovy', name: 'groovy', version: '1.7.10')
2011-11-17 16:31:31 +08:00
compile(group: 'antlr', name: 'antlr', version: '2.7.7')
compile(asm)
2012-10-04 20:43:15 +08:00
compile(group: 'com.google.guava', name: 'guava', version: '13.0.1')
2012-04-13 16:12:18 +08:00
compile(group: 'org.apache.openjpa', name: 'openjpa', version: '2.2.0')
2011-11-17 16:31:31 +08:00
compile(group: 'net.sourceforge.serp', name: 'serp', version: '1.13.1')
compile(group: 'org.antlr', name: 'antlr-runtime', version: '3.2')
compile(group: 'org.freemarker', name: 'freemarker', version: '2.3.16')
compile(group: 'aopalliance', name: 'aopalliance', version: '1.0')
2013-02-06 23:32:13 +08:00
compile(group: 'org.springframework', name: 'spring-core', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-beans', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-context', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-web', version: '3.1.3.RELEASE')
2011-11-17 16:31:31 +08:00
testCompile(group: 'com.haulmont.thirdparty', name: 'jmockit', version: '0.999.10')
testCompile(group: 'junit', name: 'junit', version: '4.5')
}
task sourceJar(type: Jar) {
from file('src')
classifier = 'sources'
}
artifacts {
archives sourceJar
}
2013-02-19 22:51:49 +08:00
2011-11-17 16:31:31 +08:00
String checkstyleConfigDir = '../../config/checkstyle'
checkstyleConfigFileName = "$checkstyleConfigDir/checkstyle.xml"
checkstyleProperties.checkstyleConfigDir = checkstyleConfigFile.parentFile // Required for suppressions.xml linking
checkstyleMain << {
def checkstyleDir = "${project.buildDir}/checkstyle".toString()
ant.xslt('in': "$checkstyleDir/main.xml", out: "$checkstyleDir/$project.name-checkstyle.html", style: "$checkstyleConfigDir/checkstyle.xsl")
}
}
configure(sharedLibModule) {
dependencies {
jdbc(postgres)
jdbc(hsqldb)
}
}
configure(globalModule) {
2011-11-22 19:42:09 +08:00
dependencies {
2012-09-06 23:18:15 +08:00
provided(servletApi)
2011-11-22 19:42:09 +08:00
// This dependency is required by CubaEnhancing task
provided(cubaPlugin)
2011-11-22 19:42:09 +08:00
}
2011-11-17 16:31:31 +08:00
task enhance(type: CubaEnhancing) {
persistenceXml = "$globalModule.projectDir/src/cuba-persistence.xml"
metadataXml = "$globalModule.projectDir/src/cuba-metadata.xml"
2011-11-17 16:31:31 +08:00
}
compileJava << {
enhance.execute()
2012-11-01 00:00:01 +08:00
env = System.getenv()
2011-11-17 16:31:31 +08:00
Date releaseDate = new Date()
String timeStamp = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(releaseDate)
2012-11-01 00:00:01 +08:00
String releaseNumber = project.ext.artifactVersion
if (project.ext.isSnapshot) {
if (rootProject.hasProperty(BUILD_VCS_NUMBER))
releaseNumber = releaseNumber + '.' + rootProject[BUILD_VCS_NUMBER]
2012-11-01 00:00:01 +08:00
releaseNumber = releaseNumber + '-SNAPSHOT'
}
2011-11-17 16:31:31 +08:00
File releaseFile = new File("$buildDir/classes/main/com/haulmont/cuba/core/global/release.timestamp")
2012-11-01 00:00:01 +08:00
File releaseNumberFile = new File("$buildDir/classes/main/com/haulmont/cuba/core/global/release.number")
2011-11-17 16:31:31 +08:00
releaseFile.delete()
releaseFile.write(timeStamp)
2012-11-01 00:00:01 +08:00
releaseNumberFile.delete()
releaseNumberFile.write(releaseNumber)
2011-11-17 16:31:31 +08:00
}
}
configure(coreModule) {
dependencies {
compile(globalModule)
compile(sharedLibModule)
compile(group: 'com.haulmont.thirdparty', name: 'xstream', version: '1.4.2.20120702')
2011-11-17 16:31:31 +08:00
runtime(group: 'xpp3', name: 'xpp3_min', version: '1.1.4c')
runtime(group: 'xmlpull', name:'xmlpull', version: '1.1.3.1')
2011-11-17 16:31:31 +08:00
compile(group: 'org.jgroups', name: 'jgroups', version: '2.12.1.Final')
compile(group: 'org.apache.commons', name: 'commons-compress', version: '1.1')
compile(group: 'org.aspectj', name: 'aspectjrt', version: '1.6.12')
compile(group: 'org.aspectj', name: 'aspectjweaver', version: '1.6.12')
2012-01-19 18:52:03 +08:00
compile(group: 'org.mybatis', name: 'mybatis', version: '3.0.5')
compile(group: 'org.mybatis', name: 'mybatis-spring', version: '1.0.1')
2011-11-17 16:31:31 +08:00
compile(group: 'org.json', name: 'json', version: '20090211')
2013-02-06 23:32:13 +08:00
compile(group: 'org.springframework', name: 'spring-context-support', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-orm', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-tx', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-webmvc', version: '3.1.3.RELEASE')
compile(poi) // POI is actually not required by core, but remains here to simplify dependencies for reports project
2011-11-17 16:31:31 +08:00
provided(servletApi)
jdbc(postgres)
jdbc(hsqldb)
testRuntime(servletApi)
testRuntime(hsqldb)
}
test {
scanForTestClasses = false
includes = ['**/*Test.class']
jvmArgs '-XX:-UseSplitVerifier'
2011-11-17 16:31:31 +08:00
}
task testsJar(dependsOn: testClasses, type: Jar) {
from sourceSets.main.output.classesDir
from sourceSets.test.output.classesDir
from sourceSets.main.output.resourcesDir
from sourceSets.test.output.resourcesDir
classifier = 'tests'
}
assembleDbScripts << {
copy {
from new File(projectDir, 'db')
into "$buildDir/db/10-cuba"
}
}
artifacts {
archives testsJar
}
task deploy(dependsOn: assemble, type: CubaDeployment) {
appName = 'cuba-core'
appJars('cuba-global', 'cuba-core')
2011-11-17 16:31:31 +08:00
}
}
configure(clientModule) {
dependencies {
compile(globalModule)
}
task testsJar(dependsOn: testClasses, type: Jar) {
from sourceSets.main.output.classesDir
from sourceSets.test.output.classesDir
classifier = 'tests'
}
artifacts {
archives testsJar
}
}
configure(guiModule) {
apply(plugin: 'groovy')
sourceSets {
main {
groovy { srcDir 'src' }
}
}
dependencies {
compile(globalModule)
compile(clientModule)
compile(poi)
2013-01-10 14:31:43 +08:00
compile(group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.2')
2011-11-17 16:31:31 +08:00
groovy(groovyArtifact)
groovy(asm)
testCompile(clientModule.sourceSets.test.output)
}
test {
scanForTestClasses = false
includes = ['**/*Test.class']
}
}
configure(webModule) {
dependencies {
compile(sharedLibModule)
compile(globalModule)
compile(clientModule)
compile(guiModule)
2013-02-06 23:14:40 +08:00
2011-11-17 16:31:31 +08:00
compile(group: 'com.haulmont.thirdparty', name: 'jespa', version: '1.0.7')
compile(group: 'commons-fileupload', name: 'commons-fileupload', version: '1.2.2')
compile(group: 'org.jasig.cas', name: 'cas-client-core', version: '3.1.10')
2013-02-06 23:32:13 +08:00
compile(group: 'org.springframework', name: 'spring-webmvc', version: '3.1.3.RELEASE')
2011-11-17 16:31:31 +08:00
2013-02-06 23:14:40 +08:00
compile(group: 'com.vaadin', name: 'vaadin-server', version: vaadinVersion)
compile(group: 'com.vaadin', name: 'vaadin-themes', version: vaadinVersion)
provided(group: 'com.vaadin', name: 'vaadin-theme-compiler', version: vaadinVersion)
2011-11-17 16:31:31 +08:00
2013-02-06 23:14:40 +08:00
compile(group: 'org.vaadin.addons', name: 'popupbutton', version: '2.2.0')
2011-11-17 16:31:31 +08:00
2013-02-06 23:14:40 +08:00
runtime(group: 'com.haulmont.thirdparty', name: 'jcifs', version: '1.3.10')
2011-11-17 16:31:31 +08:00
2013-02-06 23:14:40 +08:00
provided(servletApi)
2011-11-17 16:31:31 +08:00
}
task buildScssThemes(type: CubaWebScssThemeCreation) {
scssDir = 'themes'
themes = ['iceland']
destDir = "${project.buildDir}/web/VAADIN/themes"
// compress = true
// sprites = false
// cleanup = true
2011-11-17 16:31:31 +08:00
}
2013-02-06 23:14:40 +08:00
def webOutDir = file("$buildDir/web")
task webArchive(dependsOn: buildScssThemes, type: Zip) {
2011-11-17 16:31:31 +08:00
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')
2011-11-17 16:31:31 +08:00
}
2013-02-06 23:14:40 +08:00
2011-11-17 16:31:31 +08:00
deploy << {
2013-02-06 23:14:40 +08:00
copy {
from "$buildDir/web"
into "$tomcatDir/webapps/cuba"
}
}
}
configure(webToolkitModule) {
dependencies {
compile(webModule)
compile(group: 'com.vaadin', name: 'vaadin-client-compiled', version: vaadinVersion)
compile(group: 'com.vaadin', name: 'vaadin-client', version: vaadinVersion)
2013-02-18 16:38:23 +08:00
compile(group: 'com.vaadin', name: 'vaadin-client-compiler', version: vaadinVersion)
2013-02-06 23:14:40 +08:00
}
def webOutDir = file("$buildDir/web")
task buildWidgetSet(dependsOn: compileJava, type: CubaWidgetSetBuilding) {
2013-02-06 23:14:40 +08:00
widgetSetsDir = "$webOutDir/VAADIN/widgetsets"
2013-02-19 22:39:02 +08:00
widgetSetModules = [webToolkitModule]
dependencyModules = [webModule]
widgetSetClass = 'com.haulmont.cuba.web.toolkit.ui.WidgetSet'
2013-02-06 23:14:40 +08:00
//jvmArgs('-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000')
compilerArgs = ['-style' : 'PRETTY', '-logLevel' : 'INFO', '-localWorkers' : '2']
2013-02-06 23:14:40 +08:00
}
task webArchive(dependsOn: buildWidgetSet, type: Zip) {
from file('web')
from webOutDir
exclude '**/web.xml', '**/app.properties', '**/gwt-unitCache/'
2013-02-06 23:14:40 +08:00
classifier = 'web'
}
artifacts {
archives webArchive
}
task deploy(dependsOn: buildWidgetSet) << {
2011-11-17 16:31:31 +08:00
delete {
"$tomcatDir/webapps/cuba/VAADIN/widgetsets"
}
copy {
from "$buildDir/web"
into "$tomcatDir/webapps/cuba"
exclude '**/gwt-unitCache/'
2011-11-17 16:31:31 +08:00
}
}
}
configure(desktopModule) {
apply(plugin: 'application')
mainClassName = 'com.haulmont.cuba.desktop.App'
dependencies {
compile(globalModule)
compile(clientModule)
compile(guiModule)
2012-02-16 21:42:05 +08:00
compile(group: 'com.miglayout', name: 'miglayout-swing', version: '4.2')
2011-11-17 16:31:31 +08:00
compile(group: 'com.haulmont.thirdparty', name: 'glazedlists', version: '1.9.20110801')
compile(group: 'org.swinglabs', name: 'swingx-core', version: '1.6.2-2')
2012-01-19 18:52:03 +08:00
assemble.dependsOn = [classes]
2011-11-17 16:31:31 +08:00
}
installApp {
into("$buildDir/app/" + applicationName)
}
task desktopInstall(dependsOn: assemble) << {
jar.execute()
startScripts.execute()
installApp.execute()
}
task desktopDist(dependsOn: assemble) << {
distZip.execute()
}
task desktopStart(dependsOn: desktopInstall) << {
run.execute()
}
}
configure(uiTestModule) {
dependencies {
}
}
configure(portalModule) {
apply(plugin: 'groovy')
sourceSets {
main {
groovy { srcDir 'src' }
}
}
2013-02-06 23:32:13 +08:00
def springSecurityVersion = '3.1.3.RELEASE'
dependencies {
compile(globalModule)
compile(clientModule)
compile(sharedLibModule)
provided(servletApi)
compile(group: 'org.springframework', name: 'spring-webmvc', version: springSecurityVersion)
compile(group: 'org.springframework.security', name: 'spring-security-core', version: springSecurityVersion)
compile(group: 'org.springframework.security', name: 'spring-security-web', version: springSecurityVersion)
compile(group: 'org.springframework.security', name: 'spring-security-config', version: springSecurityVersion)
compile(group: 'org.springframework.security', name: 'spring-security-taglibs', version: springSecurityVersion)
2013-01-15 23:51:34 +08:00
compile(group: 'org.json', name: 'json', version: '20090211')
groovy(groovyArtifact)
groovy(asm)
2013-02-06 23:32:13 +08:00
compile(group: 'org.springframework', name: 'spring-tx', version: '3.1.3.RELEASE')
compile(group: 'org.springframework', name: 'spring-jdbc', version: '3.1.3.RELEASE')
testCompile(clientModule.sourceSets.test.output)
}
test {
scanForTestClasses = false
includes = ['**/*Test.class']
}
}
2011-11-17 16:31:31 +08:00
task restart(dependsOn: ['stop', ':cuba-core:deploy', ':cuba-web:deploy'], description: 'Redeploys applications and restarts local Tomcat') << {
ant.waitfor(maxwait: 6, maxwaitunit: 'second', checkevery: 2, checkeveryunit: 'second') {
not {
socket(server: 'localhost', port: '8787')
}
}
start.execute()
}
2012-02-21 16:18:28 +08:00
/***************************** Database related stuff *****************************/
2011-11-17 16:31:31 +08:00
configurations {
jdbc
}
dependencies {
jdbc(hsqldb)
}
def dbName = 'cubadb'
def File dbDataDir = file('data')
def File dbSqlDir = file('modules/core/db/init/sql')
2012-01-19 18:52:03 +08:00
def dbClasspath = configurations.jdbc.fileCollection { true }.asPath
2011-11-17 16:31:31 +08:00
task startDb(description: 'Starts local HSQLDB server') << {
dbDataDir.mkdirs()
if ('linux'.equalsIgnoreCase(System.getProperty('os.name'))) {
ant.exec(dir: dbDataDir.absolutePath, executable: '/bin/sh', spawn: true) {
arg(line: "$projectDir/modules/core/db/run-hsqldb.sh $dbClasspath $dbName")
}
} else {
ant.exec(dir: dbDataDir.absolutePath, executable: 'cmd.exe', spawn: true) {
arg(line: "/c start $projectDir/modules/core/db/run-hsqldb.bat $dbClasspath $dbName")
}
}
Thread.sleep(1000)
}
task stopDb(description: 'Stops local HSQLDB server') << {
try {
ant.sql(classpath: dbClasspath, delimiter: ";",
driver: 'org.hsqldb.jdbcDriver',
url: "jdbc:hsqldb:hsql://localhost/$dbName",
userid: 'sa', password: '',
autocommit: true,
'shutdown'
)
Thread.sleep(1000)
} catch (Exception e) {
logger.warn(">>> error stopping local HSQLDB server: $e")
}
}
task removeDb(description: 'Removes local HSQL database') << {
delete {
dbDataDir
}
}
task createDb(description: 'Creates local HSQL database') << {
ant.sql(classpath: dbClasspath, src: "$dbSqlDir/create-db.sql", delimiter: ";",
driver: 'org.hsqldb.jdbcDriver',
url: "jdbc:hsqldb:hsql://localhost/$dbName",
userid: 'sa', password: '',
autocommit: true
)
}
2012-02-21 16:18:28 +08:00
/***************************** Documentation *****************************/
// These variables must be the project properties
ext.docSrcDir = file('doc/content')
ext.docToolsDir = file('doc/tools')
ext.docCssDir = new File(docToolsDir, 'css')
ext.docDstDir = new File("$buildDir/doc")
ext.docTmpDir = new File("$buildDir/tmp/doc")
2012-02-21 16:18:28 +08:00
task transformManual(type: TransformDocbook) {
sourceDir = new File(docSrcDir, 'manual/ru')
sourceFile = new File(sourceDir, 'manual.xml')
destFile = new File(docTmpDir, 'manual/ru/manual.xml')
classpath = configurations.buildDoc
}
2013-02-06 23:32:13 +08:00
/*task buildManualXhtml(type: Docbook2Xhtml, dependsOn: transformManual) {
source transformManual.destFile
destFile = new File(docTmpDir, 'manual-pdf/manual-pdf.html')
stylesheetName = 'pdf.xsl'
resources = fileTree(new File(docSrcDir, 'manual/ru')) {
include 'img/*.png'
include 'img/*.jpg'
}
resources += fileTree(docCssDir) {
include '*.css'
}
2013-02-06 23:32:13 +08:00
}*/
2013-02-06 23:32:13 +08:00
/*task buildManualPdf(type: Xhtml2Pdf, dependsOn: buildManualXhtml) {
inputs.dir docCssDir
sourceFile = buildManualXhtml.destFile
destFile = new File(docDstDir, 'manual/ru/pdf/manual.pdf')
classpath = configurations.buildDoc
fonts = zipTree(configurations.docFonts.singleFile)
2013-02-06 23:32:13 +08:00
}*/
2012-05-29 19:42:19 +08:00
task transformSecurity(type: TransformDocbook) {
sourceDir = new File(docSrcDir, 'security/ru')
sourceFile = new File(sourceDir, 'security.xml')
destFile = new File(docTmpDir, 'security/ru/security.xml')
classpath = configurations.buildDoc
}
task buildSecurityXhtml(type: Docbook2Xhtml, dependsOn: transformSecurity) {
source transformSecurity.destFile
destFile = new File(docTmpDir, 'security-pdf/security-pdf.html')
stylesheetName = 'pdf.xsl'
resources = fileTree(new File(docSrcDir, 'security/ru')) {
include 'img/*.png'
include 'img/*.jpg'
}
resources += fileTree(docCssDir) {
include '*.css'
}
}
task buildSecurityPdf(type: Xhtml2Pdf, dependsOn: buildSecurityXhtml) {
inputs.dir docCssDir
sourceFile = buildSecurityXhtml.destFile
destFile = new File(docDstDir, 'security/ru/pdf/security.pdf')
classpath = configurations.buildDoc
fonts = zipTree(configurations.docFonts.singleFile)
}
2012-02-21 16:18:28 +08:00
task buildManualHtml(type: Docbook2Xhtml, dependsOn: transformManual) {
source transformManual.destFile
2012-03-01 15:05:08 +08:00
destDir = new File(docDstDir, 'manual/ru/html')
2012-02-21 16:18:28 +08:00
stylesheetName = 'html.xsl'
resources = fileTree(new File(docSrcDir, 'manual/ru')) {
2012-02-21 16:18:28 +08:00
include 'img/*.png'
include 'img/*.jpg'
}
resources += fileTree(docCssDir) {
2012-02-21 16:18:28 +08:00
include '*.css'
}
}
2012-05-29 19:42:19 +08:00
task buildSecurityHtml(type: Docbook2Xhtml, dependsOn: transformSecurity) {
source transformSecurity.destFile
destDir = new File(docDstDir, 'security/ru/html')
stylesheetName = 'html.xsl'
resources = fileTree(new File(docSrcDir, 'security/ru')) {
2012-05-29 19:42:19 +08:00
include 'img/*.png'
include 'img/*.jpg'
}
resources += fileTree(docCssDir) {
2012-05-29 19:42:19 +08:00
include '*.css'
}
}
2012-03-01 15:05:08 +08:00
task buildManualSingleHtml(type: Docbook2Xhtml, dependsOn: transformManual) {
source transformManual.destFile
destFile = new File(docDstDir, 'manual/ru/html-single/manual.html')
stylesheetName = 'html-single.xsl'
resources = fileTree(new File(docSrcDir, 'manual/ru')) {
2012-03-01 15:05:08 +08:00
include 'img/**/*.png'
include 'img/**/*.jpg'
}
resources += fileTree(docCssDir) {
2012-03-01 15:05:08 +08:00
include '*.css'
}
}
2012-05-29 19:42:19 +08:00
task buildSecuritySingleHtml(type: Docbook2Xhtml, dependsOn: transformSecurity) {
source transformSecurity.destFile
destFile = new File(docDstDir, 'security/ru/html-single/security.html')
stylesheetName = 'html-single.xsl'
resources = fileTree(new File(docSrcDir, 'security/ru')) {
2012-05-29 19:42:19 +08:00
include 'img/**/*.png'
include 'img/**/*.jpg'
}
resources += fileTree(docCssDir) {
2012-05-29 19:42:19 +08:00
include '*.css'
}
}
2012-02-21 16:18:28 +08:00
task buildDoc(type: Zip, description: 'Build documentation',
2013-02-06 23:32:13 +08:00
dependsOn: [buildManualSingleHtml,buildSecuritySingleHtml,buildSecurityPdf]) {
//dependsOn: [buildManualSingleHtml,buildManualPdf,buildSecuritySingleHtml,buildSecurityPdf]) {
2012-02-21 16:18:28 +08:00
from 'build/doc'
destinationDir = file('build/distributions')
baseName = 'cuba-doc'
version = artifactVersion + (isSnapshot ? '-SNAPSHOT' : '')
}
artifacts {
if (Boolean.valueOf(System.getProperty("buildDoc")))
archives buildDoc
2012-02-21 16:18:28 +08:00
}