Skip to content

Commit

Permalink
setup CI for jdk 8 and 9 (#17)
Browse files Browse the repository at this point in the history
* setup CI for jdk 8 and 9

* Update .travis.yml

* Update .travis.yml

* updating pvDatabaseJava module

* #16 fixing javadoc preparing for java 9

* Updating exampleJava for jdk9 compliance

* Temporarily disabling test due to travis failures

* #16 install openfx and fix certificates for jdk8 and jdk10

* Update .travis.yml

* Temporarily disable unit test failing on travis

* #16 cleaning up the java doc plugin and adding html5 tag

* remove references to com.sun.* deprecated in java9+

* #16 using george's profile to disable html5 for java8

* Travis patch (#24)

* Update .travis.yml

* removing the typo "-"
  • Loading branch information
shroffk committed Oct 3, 2018
1 parent 76fe6e0 commit 2cd3d8e
Show file tree
Hide file tree
Showing 6 changed files with 365 additions and 367 deletions.
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,25 @@ sudo: required
language: java
jdk:
- oraclejdk8
- openjdk8
- oraclejdk9
- openjdk10
- oraclejdk10

matrix:
include:
- jdk: openjdk8
before_install:
- export MVN_OPT='--projects "!gpclient/gpclient-javafx"'
- jdk: openjdk10
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
- export MVN_OPT='--projects "!gpclient/gpclient-javafx"'
env:
- EPICS_PVA_ADDR_LIST=127.255.255.255

install: true
script:
- mvn clean verify -B
- mvn clean verify ${MVN_OPT} -B

after_failure:
- find ./ -type d -name "surefire-reports" -print0 | xargs -0 -I {} find {} -iname "*.txt" -type f | xargs cat
Expand Down
26 changes: 0 additions & 26 deletions epics-vtype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,6 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion exampleJava
Loading

0 comments on commit 2cd3d8e

Please sign in to comment.