File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 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>
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 >
Original file line number Diff line number Diff 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`
1318DEPS_NOT_FOUND=" "
1419for one_dep in ` echo $ALL_DEPS ` ; do
1520 set +e
You can’t perform that action at this time.
0 commit comments