Build Cleanup
This commit is contained in:
parent
0c13a65871
commit
c7da4b0914
|
@ -189,6 +189,13 @@
|
|||
<dependencySourceIncludes>
|
||||
<include>ca.uhn.hapi.fhir:org.hl7.fhir.convertors</include>
|
||||
</dependencySourceIncludes>
|
||||
<additionalDependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>${commons_compress_version}</version>
|
||||
</dependency>
|
||||
</additionalDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
<li>FlywayDB (JPA) 6.1.0 -> 6.4.1</li>
|
||||
<li>Apache HTTPCliient (JPA): 4.5.9 -> 4.5.12</li>
|
||||
<li>Apache HTTPCore (JPA): 4.4.11 -> 4.4.14</li>
|
||||
<li>Commons Compress (All): 1.19 -> 1.20</li>
|
||||
</ul>"
|
||||
- item:
|
||||
issue: "1583"
|
||||
|
|
|
@ -59,6 +59,11 @@
|
|||
<artifactId>xpp3</artifactId>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<!-- Used by the validator -->
|
||||
<dependency>
|
||||
|
@ -351,6 +356,13 @@
|
|||
<dependencySourceIncludes>
|
||||
<include>ca.uhn.hapi.fhir:org.hl7.fhir.r5</include>
|
||||
</dependencySourceIncludes>
|
||||
<additionalDependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>${guava_version}</version>
|
||||
</dependency>
|
||||
</additionalDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
3
pom.xml
3
pom.xml
|
@ -664,6 +664,7 @@
|
|||
<aries_spifly_version>1.2</aries_spifly_version>
|
||||
<caffeine_version>2.7.0</caffeine_version>
|
||||
<commons_codec_version>1.12</commons_codec_version>
|
||||
<commons_compress_version>1.20</commons_compress_version>
|
||||
<commons_text_version>1.7</commons_text_version>
|
||||
<commons_io_version>2.6</commons_io_version>
|
||||
<commons_lang3_version>3.9</commons_lang3_version>
|
||||
|
@ -862,7 +863,7 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>1.19</version>
|
||||
<version>${commons_compress_version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
|
|
Loading…
Reference in New Issue