bump language level to Java 11

This commit is contained in:
Stefan Kalscheuer 2019-10-17 19:36:03 +02:00
parent dfa4c55496
commit 10681f4eb3
4 changed files with 10 additions and 17 deletions

View File

@ -1,16 +1,5 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: java8
steps:
- name: test
image: maven:3-jdk-8-alpine
commands:
- mvn clean test
---
kind: pipeline
type: docker
name: java11 name: java11
steps: steps:

View File

@ -1,6 +1,5 @@
language: java language: java
jdk: jdk:
- openjdk8
- openjdk11 - openjdk11
- openjdk14 - openjdk14
install: true install: true

View File

@ -1,6 +1,11 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## unreleased
### Breaking
* Java 11 or later required
## 1.3.0 - 2019-12-04 ## 1.3.0 - 2019-12-04
### Security ### Security
* Updated dependencies * Updated dependencies

View File

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>de.stklcode.pubtrans</groupId> <groupId>de.stklcode.pubtrans</groupId>
<artifactId>juraclient</artifactId> <artifactId>juraclient</artifactId>
<version>1.3.1-SNAPSHOT</version> <version>2.0.0-SNAPSHOT</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -88,8 +89,7 @@
<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> <release>11</release>
<target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>