Migrate to java 11

master
Thomas Clavier 4 years ago
parent b2e19346e4
commit 32f7442899
  1. 2
      README.md
  2. 6
      pom.xml

@ -36,7 +36,7 @@ The purpose of this is to provide good examples for the refactoring workshop.
## Build ## Build
All you need to build this project is Java 6.0 (Java SDK 1.6) or later, Maven 3.0 or later. All you need to build this project is Java 11 or later, Maven 3.0 or later.
## Testing ## Testing

@ -15,8 +15,8 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<configuration> <configuration>
<source>1.8</source> <source>11</source>
<target>1.8</target> <target>11</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

Loading…
Cancel
Save