summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-04-18 20:28:51 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-04-18 20:28:51 +0200
commit1e7674cf4880e21b24442c01914c2bcf9c00cb7b (patch)
treecd6909813d3118131717c152c542513503764ea7 /pom.xml
parent98e63f0244dfd9e90d4888f86ccad59c0dc3996c (diff)
Add nullability constraints everywhere.
Change-Id: I80577b7784006070f29ce11af4e6fd87c10363bf
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index f903800..bd812b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,6 +28,7 @@
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>1.4.0.CR1</quarkus.platform.version>
+ <basic-annotations.version>0.2.0</basic-annotations.version>
<findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
<flexmark.version>0.61.10</flexmark.version>
<hibernate.version>5.4.14.Final</hibernate.version>
@@ -58,6 +59,14 @@
<version>${hibernate-types.version}</version>
</dependency>
+ <!-- Annotations -->
+ <dependency>
+ <groupId>pl.tlinkowski.annotation</groupId>
+ <artifactId>pl.tlinkowski.annotation.basic</artifactId>
+ <version>${basic-annotations.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
<!-- Jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
@@ -215,6 +224,13 @@
<artifactId>hibernate-types-52</artifactId>
</dependency>
+ <!-- Annotations -->
+ <dependency>
+ <groupId>pl.tlinkowski.annotation</groupId>
+ <artifactId>pl.tlinkowski.annotation.basic</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
<!-- Jsoup -->
<dependency>
<groupId>org.jsoup</groupId>