Add Rome dependency.

Change-Id: I5240e5aebe9197127d1db45de6329c00e39fdd55
diff --git a/build.gradle b/build.gradle
index 7e7483a..f2ee661 100644
--- a/build.gradle
+++ b/build.gradle
@@ -73,9 +73,9 @@
     testImplementation 'io.quarkus:quarkus-junit5'
     testImplementation 'io.rest-assured:rest-assured'
 
-    implementation "org.jsoup:jsoup"
-
+    implementation "com.rometools:rome"
     implementation "com.vladsch.flexmark:flexmark-all"
+    implementation "org.jsoup:jsoup"
 
     constraints {
         implementation "com.vladmihalcea:hibernate-types-52:${hibernateTypesVersion}"
@@ -87,6 +87,7 @@
         implementation "org.bitbucket.b_c:jose4j:${jose4jVersion}"
         implementation "com.vladsch.flexmark:flexmark-all:${flexmarkVersion}"
         implementation "org.jsoup:jsoup:${jsoupVersion}"
+        implementation "com.rometools:rome:${romeVersion}"
     }
 }
 
diff --git a/gradle.properties b/gradle.properties
index b5982b6..65efece 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -24,6 +24,7 @@
 jose4jVersion = 0.7.0
 jsoupVersion = 1.12.2
 mapstructVersion = 1.3.1.Final
+romeVersion = 1.12.2
 scalaVersion = 2.13.1
 testcontainersVersion = 1.12.4
 
diff --git a/pom.xml b/pom.xml
index 940ae36..9943ec4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,6 +34,7 @@
     <jna.version>5.5.0</jna.version>
     <jsoup.version>1.12.2</jsoup.version>
     <mapstruct.version>1.3.1.Final</mapstruct.version>
+    <rome.version>1.12.2</rome.version>
     <testcontainers.version>1.12.5</testcontainers.version>
   </properties>
 
@@ -69,6 +70,13 @@
         <version>${flexmark.version}</version>
       </dependency>
 
+      <!-- Rome -->
+      <dependency>
+        <groupId>com.rometools</groupId>
+        <artifactId>rome</artifactId>
+        <version>${rome.version}</version>
+      </dependency>
+
       <!-- JNA -->
       <dependency>
         <groupId>net.java.dev.jna</groupId>
@@ -217,6 +225,12 @@
       <artifactId>flexmark-all</artifactId>
     </dependency>
 
+    <!-- Rome -->
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+
     <!-- JOSE for Java -->
     <dependency>
       <groupId>org.bitbucket.b_c</groupId>