-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
31 lines (28 loc) · 905 Bytes
/
build.gradle
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
26
27
28
29
30
31
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
repositories {
mavenCentral()
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
javadoc {
afterEvaluate {
configure(options) {
windowTitle "Kinopoisk2IMDB Documentation"
docTitle "Kinopoisk2IMDB Documentation"
bottom 'Copyright © 2016 <a href="https://github.com/REDNBLACK">REDNBLACK</a>'
breakIterator true
author false
source "1.8"
encoding "UTF-8"
docEncoding "UTF-8"
failOnError true
links = [
"http://download.oracle.com/javase/8/docs/api/",
"http://download.oracle.com/javaee/7/api/",
]
}
}
}
}