Skip to content

Commit c41ce86

Browse files
Bump jackson and jackson-databind from 2.9.10.4 to 2.10.4 (#349)
1 parent 18c2125 commit c41ce86

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<configuration>
7979
<runOrder>random</runOrder>
8080
<!-- We don't use threads, as that would complicate cassette recording, plus keystore used by tests isn't thread safe. -->
81-
<!-- FIXME
81+
<!-- FIXME
8282
<forkCount>2</forkCount>
8383
<reuseForks>true</reuseForks>
8484
<threadCount>1</threadCount>
@@ -370,8 +370,8 @@
370370
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
371371
<swagger-annotations-version>1.5.22</swagger-annotations-version>
372372
<jersey-version>2.27</jersey-version>
373-
<jackson-version>2.9.10</jackson-version>
374-
<jackson-databind-version>2.9.10.4</jackson-databind-version>
373+
<jackson-version>2.10.4</jackson-version>
374+
<jackson-databind-version>2.10.4</jackson-databind-version>
375375
<jackson-databind-nullable-version>0.2.0</jackson-databind-nullable-version>
376376
<http-signature-version>1.3</http-signature-version>
377377
<maven-plugin-version>1.0.0</maven-plugin-version>

run-tests.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ echo "Ensuring all dependencies are present in LICENSE-3rdparty.csv ..."
99
# org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.27:compile
1010
# * the second sed result
1111
# org.glassfish.jersey.ext:jersey-entity-filtering
12-
ALL_DEPS=`mvn dependency:tree -DoutputType=dot | grep -- "-> " | sed 's|.*-> "\(.*\)".*|\1|' | sed "s/\(.*\):jar:.*/\1/" | sort | uniq`
12+
MVN_OUTPUT=`mvn dependency:tree -DoutputType=dot`
13+
if [ $? -ne 0 ]; then
14+
echo $MVN_OUTPUT
15+
exit 1
16+
fi
17+
ALL_DEPS=`echo $MVN_OUTPUT | grep -- "-> " | sed 's|.*-> "\(.*\)".*|\1|' | sed "s/\(.*\):jar:.*/\1/" | sort | uniq`
1318
DEPS_NOT_FOUND=""
1419
for one_dep in `echo $ALL_DEPS`; do
1520
set +e

0 commit comments

Comments
 (0)