File: download.gradle

package info (click to toggle)
hibiscus 2.10.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,972 kB
  • sloc: java: 78,760; sql: 1,301; xml: 323; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
apply plugin: 'java'
apply plugin: 'eclipse'

sourceCompatibility = 1.7
compileJava.options.encoding = 'ISO-8859-1'

eclipse {
  classpath {
    downloadSources = true
  }
}

repositories {
  mavenCentral()
}

dependencies {
  compile 'io.konik:konik:+'
  compile 'io.konik:itext-carriage:+'
}

task download(type: Copy) {
  into "lib/download"
  from configurations.runtime
}