raise language level to Java 11
This commit is contained in:
parent
f7d6f9384d
commit
c45dbf014e
@ -16,7 +16,6 @@ cache:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- jdk: openjdk8
|
|
||||||
- jdk: openjdk11
|
- jdk: openjdk11
|
||||||
env: PATH=$PATH:. VAULT_VERSION=1.7.0 ANALYSIS=true
|
env: PATH=$PATH:. VAULT_VERSION=1.7.0 ANALYSIS=true
|
||||||
- jdk: openjdk16
|
- jdk: openjdk16
|
||||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,3 +1,13 @@
|
|||||||
|
## unreleased
|
||||||
|
|
||||||
|
### Breaking
|
||||||
|
* Requires Java 11 or later
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Use pre-sized map objects for fixed-size payloads
|
||||||
|
* Remove Apache HTTP Client dependency in favor of Java 11 HTTP
|
||||||
|
|
||||||
|
|
||||||
## 0.9.3 (2021-04-02)
|
## 0.9.3 (2021-04-02)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
28
pom.xml
28
pom.xml
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<groupId>de.stklcode.jvault</groupId>
|
<groupId>de.stklcode.jvault</groupId>
|
||||||
<artifactId>jvault-connector</artifactId>
|
<artifactId>jvault-connector</artifactId>
|
||||||
<version>0.9.3</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
@ -52,8 +52,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>
|
||||||
@ -202,7 +202,7 @@
|
|||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.2.0</version>
|
<version>3.2.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.8</source>
|
<source>11</source>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
@ -307,26 +307,6 @@
|
|||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
|
||||||
<id>jdk1.8</id>
|
|
||||||
<activation>
|
|
||||||
<jdk>1.8</jdk>
|
|
||||||
</activation>
|
|
||||||
<build>
|
|
||||||
<pluginManagement>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<argLine>@{argLine}</argLine>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
</build>
|
|
||||||
</profile>
|
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>sonatype</id>
|
<id>sonatype</id>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user