Merge pull request #1947 from kwoot/master

Make build work in Ubuntu 20.04 with openjdk-8-jdk without working tests (yet)
This commit is contained in:
Jeroen Baten 2022-03-13 14:30:11 +01:00 committed by GitHub
commit 202c67284d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -43,6 +43,13 @@
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
</dependency>
<!-- Annotation-api added to support jdk8 -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<!-- Usertype.Core -->

View file

@ -254,6 +254,13 @@
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<!-- Annotation-api added to support jdk8 -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<!-- Usertype.Core ( Significant for Hibernate ) -->