Skip to content

Commit 6b22f6c

Browse files
committed
.
2 parents f8797b8 + 30c2b95 commit 6b22f6c

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

build.gradle

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,23 @@ allprojects {
1010
gradle.projectsEvaluated {
1111
tasks.withType(JavaCompile) {
1212
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
13+
<<<<<<< HEAD
1314
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
1430
}
1531
}
1632

@@ -52,6 +68,7 @@ allprojects {
5268

5369

5470
subprojects {
71+
<<<<<<< HEAD
5572
apply plugin: 'java'
5673
sourceCompatibility = 1.6
5774
targetCompatibility = 1.6
@@ -71,5 +88,20 @@ subprojects {
7188
project(':reactive-streams-tck') {
7289
dependencies {
7390
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
74106
}
75107
}

0 commit comments

Comments
 (0)