Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Switch to Java 1.8
Browse files Browse the repository at this point in the history
Travis CI now support Java 1.8 early access so switch to that directly
so that we can use new Java programming language features and reuse the
JVM functional interfaces for code generation.

Signed-off-by: Pekka Enberg <penberg@kernel.org>
  • Loading branch information
penberg committed Dec 3, 2013
1 parent d7e2856 commit 5f04201
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
@@ -1,4 +1,3 @@
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ hacking on F# implementation for the JVM, welcome on board!
### Requirements

Fjord is built and packaged with [Apache Maven][Apache Maven] and requires Java
1.7 or higher to build and run.
1.8 or higher to build and run.

### Building from sources

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -67,8 +67,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
Expand Down

0 comments on commit 5f04201

Please sign in to comment.