Skip to content

Commit

Permalink
Merge pull request #433 from ePADD/java11
Browse files Browse the repository at this point in the history
Update to require Java 11
  • Loading branch information
jfarwer committed Nov 17, 2022
2 parents bcf39e7 + 84210d9 commit 9768d75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,3 +1,3 @@
language: java
jdk: openjdk8
script: sh ./do
jdk: openjdk11
script: sh ./do
4 changes: 2 additions & 2 deletions pom-discovery.xml
Expand Up @@ -92,8 +92,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<excludes>
<exclude>**/edu/stanford/epadd/launcher/*.java</exclude>
</excludes>
Expand Down
25 changes: 2 additions & 23 deletions pom.xml
Expand Up @@ -146,33 +146,12 @@
</resources>

<plugins>
<plugin>

<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<version>9.3.7.v20160115</version>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>jspc</goal>
</goals>
<configuration>
<webAppSourceDirectory>${basedir}/WebContent</webAppSourceDirectory>
<excludes>**\/*test\/**</excludes>
<sourceVersion>1.8</sourceVersion>
<targetVersion>1.8</targetVersion>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<excludes>
<exclude>**/edu/stanford/epadd/launcher/*.java</exclude>
</excludes>
Expand Down

0 comments on commit 9768d75

Please sign in to comment.