Skip to content

Commit 0c9a835

Browse files
authored
Merge pull request #166 from aistomin/Issue-127
Issue #127. Shirt to Java 15.
2 parents e063d1f + 3f7b4e7 commit 0c9a835

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
dist: trusty
1+
dist: bionic
22
language: java
33
jdk:
4-
- oraclejdk8
4+
- oraclejdk15
55
branches:
66
only:
77
- master

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environmental software that needs to read information from Maven repository.
1313
## Getting Started
1414

1515
### System Requirements
16-
- JDK 8 or higher.
16+
- JDK 15 or higher.
1717
- Apache Maven 3.3.9 or higher
1818

1919
### Add Maven Dependency

pom.xml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<junitVersion>5.8.2</junitVersion>
4444
<javadocPluginVersion>3.3.1</javadocPluginVersion>
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46+
<maven.compiler.source>15</maven.compiler.source>
4647
</properties>
4748
<dependencies>
4849
<dependency>
@@ -158,29 +159,14 @@
158159
<artifactId>maven-compiler-plugin</artifactId>
159160
<version>3.8.1</version>
160161
<configuration>
161-
<source>8</source>
162-
<target>8</target>
162+
<source>15</source>
163+
<target>15</target>
163164
</configuration>
164165
</plugin>
165-
<plugin>
166-
<groupId>com.qulice</groupId>
167-
<artifactId>qulice-maven-plugin</artifactId>
168-
<version>0.18.19</version>
169-
<configuration>
170-
<license>file:${basedir}/LICENSE</license>
171-
</configuration>
172-
<executions>
173-
<execution>
174-
<goals>
175-
<goal>check</goal>
176-
</goals>
177-
</execution>
178-
</executions>
179-
</plugin>
180166
<plugin>
181167
<groupId>org.jacoco</groupId>
182168
<artifactId>jacoco-maven-plugin</artifactId>
183-
<version>0.8.4</version>
169+
<version>0.8.7</version>
184170
<executions>
185171
<execution>
186172
<goals>

0 commit comments

Comments
 (0)