Skip to content

Commit 6630dd9

Browse files
Updating dependencies to the latest versions (OHDSI, a few third-party libraries) (#2013)
1 parent 3f406f8 commit 6630dd9

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

pom.xml

+25-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<shiro.version>1.8.0</shiro.version>
2424
<dom4j.version>2.1.3</dom4j.version>
2525
<hydra.version>0.2.0</hydra.version>
26-
<featureExtraction.version>3.1.0</featureExtraction.version>
26+
<featureExtraction.version>3.2.0</featureExtraction.version>
2727

2828
<commons-fileupload.version>1.3.3</commons-fileupload.version>
2929

@@ -604,6 +604,13 @@
604604
</exclusion>
605605
</exclusions>
606606
</dependency>
607+
<!-- It is overriding a transitive dependency from the dependency above -->
608+
<!-- After migrating to Spring Boot 2.x we should get rid of it -->
609+
<dependency>
610+
<groupId>org.yaml</groupId>
611+
<artifactId>snakeyaml</artifactId>
612+
<version>1.26</version>
613+
</dependency>
607614
<dependency>
608615
<groupId>org.springframework.boot</groupId>
609616
<artifactId>spring-boot-starter-web</artifactId>
@@ -631,6 +638,13 @@
631638
<groupId>org.springframework.boot</groupId>
632639
<artifactId>spring-boot-starter-batch</artifactId>
633640
</dependency>
641+
<!-- It is overriding a transitive dependency from the dependency above -->
642+
<!-- After migrating to Spring Boot 2.x we should get rid of it -->
643+
<dependency>
644+
<groupId>com.thoughtworks.xstream</groupId>
645+
<artifactId>xstream</artifactId>
646+
<version>1.4.19</version>
647+
</dependency>
634648
<dependency>
635649
<groupId>org.springframework.boot</groupId>
636650
<artifactId>spring-boot-starter-jdbc</artifactId>
@@ -739,6 +753,13 @@
739753
</exclusion>
740754
</exclusions>
741755
</dependency>
756+
<!-- It is overriding a transitive dependency from the dependency above -->
757+
<!-- After migrating to Spring Boot 2.x we should get rid of it -->
758+
<dependency>
759+
<groupId>net.minidev</groupId>
760+
<artifactId>json-smart</artifactId>
761+
<version>2.4.8</version>
762+
</dependency>
742763
<dependency>
743764
<groupId>org.apache.commons</groupId>
744765
<artifactId>commons-lang3</artifactId>
@@ -979,6 +1000,7 @@
9791000
<dependency>
9801001
<groupId>com.google.code.gson</groupId>
9811002
<artifactId>gson</artifactId>
1003+
<version>2.8.9</version>
9821004
</dependency>
9831005
<dependency>
9841006
<groupId>org.jasypt</groupId>
@@ -1078,7 +1100,7 @@
10781100
<dependency>
10791101
<groupId>org.ohdsi</groupId>
10801102
<artifactId>standardized-analysis-specs</artifactId>
1081-
<version>1.3.1</version>
1103+
<version>1.4.0</version>
10821104
<exclusions>
10831105
<exclusion>
10841106
<groupId>com.fasterxml.jackson.core</groupId>
@@ -1089,7 +1111,7 @@
10891111
<dependency>
10901112
<groupId>org.ohdsi</groupId>
10911113
<artifactId>standardized-analysis-utils</artifactId>
1092-
<version>1.3.0</version>
1114+
<version>1.3.2</version>
10931115
<exclusions>
10941116
<exclusion>
10951117
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)