2015-01-26 06:20:09 +03:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-02-18 08:58:35 +03:00
|
|
|
compile "com.revolutionanalytics.deployr:jDeployR:7.4.1"
|
2015-01-26 06:20:09 +03:00
|
|
|
compile "net.sf.jasperreports:jasperreports:6.0.0"
|
|
|
|
compile "commons-logging:commons-logging:1.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'jRQueryExecuter'
|
2015-02-18 08:58:35 +03:00
|
|
|
version = '7.4.0'
|
2015-01-26 06:20:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
javadoc {
|
|
|
|
title = "DeployR JasperReports Server Client Library"
|
|
|
|
options.overview = "src/main/java/overview.html"
|
|
|
|
exclude "com/revo/deployr/client/jasper/query/**/*.java"
|
|
|
|
}
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '2.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
from javadoc
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
|
|
|
classifier = 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|