Skip to content

Commit bfb8e27

Browse files
committed
moved to java 8
1 parent 39c6a48 commit bfb8e27

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: java
22
jdk:
3-
- openjdk7
4-
- oraclejdk8
3+
- openjdk8
4+
- openjdk11
55

66
after_success:
77
- mvn clean cobertura:cobertura coveralls:report

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@
8787
<artifactId>maven-compiler-plugin</artifactId>
8888
<version>3.7.0</version>
8989
<configuration>
90-
<source>1.7</source>
91-
<target>1.7</target>
90+
<source>1.8</source>
91+
<target>1.8</target>
9292
<showWarnings>true</showWarnings>
9393
<encoding>${project.build.sourceEncoding}</encoding>
9494
</configuration>
@@ -353,7 +353,7 @@
353353
<plugin>
354354
<groupId>org.apache.maven.plugins</groupId>
355355
<artifactId>maven-checkstyle-plugin</artifactId>
356-
<version>2.17</version>
356+
<version>3.1.0</version>
357357
<executions>
358358
<execution>
359359
<id>verify-style</id>
@@ -366,7 +366,7 @@
366366
<configuration>
367367
<logViolationsToConsole>true</logViolationsToConsole>
368368
<includeTestSourceDirectory>true</includeTestSourceDirectory>
369-
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
369+
<sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
370370
<checkstyleRules>
371371
<module name="Checker">
372372
<module name="SuppressWarningsFilter" />
@@ -405,7 +405,7 @@
405405
<dependency>
406406
<groupId>com.puppycrawl.tools</groupId>
407407
<artifactId>checkstyle</artifactId>
408-
<version>6.19</version>
408+
<version>8.22</version>
409409
</dependency>
410410
</dependencies>
411411
</plugin>

0 commit comments

Comments
 (0)