Skip to content

Commit

Permalink
Add commons-lang3 to support commons-compress bump (hapifhir#1784)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotasek authored Oct 18, 2024
1 parent d94d49d commit d0bbc93
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions org.hl7.fhir.r4b/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
</exclusions>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<optional>true</optional>
</dependency>

<!-- UCUM -->
<dependency>
<groupId>org.fhir</groupId>
Expand Down
6 changes: 6 additions & 0 deletions org.hl7.fhir.r5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@
<optional>true</optional>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<optional>true</optional>
</dependency>
<!-- Apache POI -->
<dependency>
<groupId>org.apache.poi</groupId>
Expand Down
4 changes: 4 additions & 0 deletions org.hl7.fhir.validation.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@
<groupId>org.fhir</groupId>
<artifactId>ucum</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.ogce</groupId>
<artifactId>xpp3</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions org.hl7.fhir.validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@
<scope>test</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<packaging>pom</packaging>

<properties>
<commons_lang3_version>3.17.0</commons_lang3_version>
<commons_compress_version>1.27.1</commons_compress_version>
<commons_io_version>2.17.0</commons_io_version>
<guava_version>32.0.1-jre</guava_version>
Expand Down Expand Up @@ -136,6 +137,12 @@
<artifactId>commonmark-ext-gfm-tables</artifactId>
<version>0.21.0</version>
</dependency>
<dependency>

<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons_lang3_version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
Expand Down

0 comments on commit d0bbc93

Please sign in to comment.