File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,23 @@ allprojects {
10
10
gradle. projectsEvaluated {
11
11
tasks. withType(JavaCompile ) {
12
12
options. compilerArgs << " -Xlint:unchecked" << " -Xlint:deprecation"
13
+ <<<<<< < HEAD
13
14
options. encoding = ' UTF-8'
15
+ ====== =
16
+ options. encoding = ' UTF-8'
17
+ }
18
+
19
+ tasks. withType(Javadoc ) {
20
+ source = sourceSets. main. allJava
21
+
22
+ configure(options) {
23
+ encoding ' UTF-8'
24
+ docEncoding ' UTF-8'
25
+ charSet ' UTF-8'
26
+ linkSource true
27
+ noTimestamp true
28
+ }
29
+ >>>>>>> 30c2b95d5bf72c6e57030924d3179920257f96d2
14
30
}
15
31
}
16
32
@@ -52,6 +68,7 @@ allprojects {
52
68
53
69
54
70
subprojects {
71
+ <<<<<< < HEAD
55
72
apply plugin : ' java'
56
73
sourceCompatibility = 1.6
57
74
targetCompatibility = 1.6
@@ -71,5 +88,20 @@ subprojects {
71
88
project(' :reactive-streams-tck' ) {
72
89
dependencies {
73
90
compile project(' :reactive-streams-api' )
91
+ ====== =
92
+ apply plugin : ' java'
93
+ sourceCompatibility = 1.6
94
+ targetCompatibility = 1.6
95
+
96
+ compileJava. options. encoding = ' UTF-8'
97
+
98
+ javadoc {
99
+ destinationDir = file(" build/docs/java/api" )
100
+ options. encoding = ' UTF-8'
101
+ }
102
+ repositories {
103
+ mavenLocal()
104
+ mavenCentral()
105
+ >>>>>>> 30c2b95d5bf72c6e57030924d3179920257f96d2
74
106
}
75
107
}
You can’t perform that action at this time.
0 commit comments