File tree Expand file tree Collapse file tree 2 files changed +32
-16
lines changed Expand file tree Collapse file tree 2 files changed +32
-16
lines changed Original file line number Diff line number Diff line change 1
1
dist : trusty
2
2
3
3
language : java
4
- jdk : oraclejdk8
4
+ jdk :
5
+ - openjdk8
6
+ - openjdk11
5
7
6
8
cache :
7
9
directories :
@@ -23,15 +25,19 @@ deploy:
23
25
on :
24
26
repo : ExpediaDotCom/graphql-kotlin
25
27
branch : master
26
- jdk : oraclejdk8
28
+ jdk :
29
+ - openjdk8
30
+ - openjdk11
27
31
-
28
32
provider : script
29
33
script : .travis/deploy.sh
30
34
skip_cleanup : true
31
35
on :
32
36
repo : ExpediaDotCom/graphql-kotlin
33
37
tags : true
34
- jdk : oraclejdk8
38
+ jdk :
39
+ - openjdk8
40
+ - openjdk11
35
41
36
42
after_deploy :
37
43
- .travis/update-version.sh
Original file line number Diff line number Diff line change 105
105
<sourceDirectory >${project.basedir} /src/main/kotlin</sourceDirectory >
106
106
<testSourceDirectory >${project.basedir} /src/test/kotlin</testSourceDirectory >
107
107
<plugins >
108
- <plugin >
109
- <groupId >org.jetbrains.dokka</groupId >
110
- <artifactId >dokka-maven-plugin</artifactId >
111
- <version >${dokka-maven-plugin.version} </version >
112
- <executions >
113
- <execution >
114
- <phase >prepare-package</phase >
115
- <goals >
116
- <goal >javadocJar</goal >
117
- </goals >
118
- </execution >
119
- </executions >
120
- </plugin >
121
108
<plugin >
122
109
<groupId >org.jetbrains.kotlin</groupId >
123
110
<artifactId >kotlin-maven-plugin</artifactId >
410
397
</plugins >
411
398
</build >
412
399
</profile >
400
+ <profile >
401
+ <id >jdk8</id >
402
+ <activation >
403
+ <jdk >1.8</jdk >
404
+ </activation >
405
+ <build >
406
+ <plugins >
407
+ <plugin >
408
+ <groupId >org.jetbrains.dokka</groupId >
409
+ <artifactId >dokka-maven-plugin</artifactId >
410
+ <version >${dokka-maven-plugin.version} </version >
411
+ <executions >
412
+ <execution >
413
+ <phase >prepare-package</phase >
414
+ <goals >
415
+ <goal >javadocJar</goal >
416
+ </goals >
417
+ </execution >
418
+ </executions >
419
+ </plugin >
420
+ </plugins >
421
+ </build >
422
+ </profile >
413
423
</profiles >
414
424
</project >
You can’t perform that action at this time.
0 commit comments