Browse Source

Prevent JavaFX to be added to the classpath with Java 11

See https://hibernate.atlassian.net/browse/HV-1644
pull/14043/head
Stephane Nicoll 7 years ago
parent
commit
bfd616ac7a
  1. 7
      spring-boot-project/spring-boot-dependencies/pom.xml

7
spring-boot-project/spring-boot-dependencies/pom.xml

@ -1919,6 +1919,13 @@ @@ -1919,6 +1919,13 @@
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
<exclusions>
<!-- https://hibernate.atlassian.net/browse/HV-1644 -->
<exclusion>
<groupId>org.openjfx</groupId>
<artifactId>javafx.base</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>

Loading…
Cancel
Save