Added missing dep for jdk11

This commit is contained in:
Marcin Grzejszczak
2018-10-08 11:59:58 +02:00
parent c20433e05f
commit 4d853d072b
3 changed files with 153 additions and 131 deletions

15
pom.xml
View File

@@ -211,4 +211,19 @@
</pluginRepository>
</pluginRepositories>
<profiles>
<profile>
<id>java11+</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>