Add OSGI dependency for commons-text
This commit is contained in:
parent
7bbe33cffc
commit
3bfce11d2c
|
@ -9,9 +9,9 @@ package ca.uhn.fhir.jpa.util;
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
|
|
@ -23,9 +23,9 @@ import java.util.Enumeration;
|
|||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
<bundle dependency='true'>mvn:com.google.code.gson/gson/${gson_version}</bundle>
|
||||
<bundle dependency='true'>mvn:org.apache.commons/commons-lang3/${commons_lang3_version}</bundle>
|
||||
<bundle dependency='true'>mvn:commons-codec/commons-codec/${commons_codec_version}</bundle>
|
||||
<bundle dependency='true'>mvn:org.apache.commons/commons-text/${commons_text_version}</bundle>
|
||||
<bundle dependency='true'>mvn:commons-io/commons-io/${commons_io_version}</bundle>
|
||||
<bundle dependency='true'>mvn:com.google.guava/guava/${guava_version}</bundle>
|
||||
<bundle dependency='true'>wrap:mvn:com.google.errorprone/error_prone_annotations/${error_prone_annotations_version}</bundle>
|
||||
|
|
3
pom.xml
3
pom.xml
|
@ -498,6 +498,7 @@
|
|||
<aries_spifly_version>1.0.10</aries_spifly_version>
|
||||
<caffeine_version>2.6.2</caffeine_version>
|
||||
<commons_codec_version>1.11</commons_codec_version>
|
||||
<commons_text_version>1.4</commons_text_version>
|
||||
<commons_io_version>2.6</commons_io_version>
|
||||
<commons_lang3_version>3.8</commons_lang3_version>
|
||||
<derby_version>10.14.2.0</derby_version>
|
||||
|
@ -843,7 +844,7 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-text</artifactId>
|
||||
<version>1.4</version>
|
||||
<version>${commons_text_version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.derby</groupId>
|
||||
|
|
Loading…
Reference in New Issue