Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<configuration>
<runOrder>random</runOrder>
<!-- We don't use threads, as that would complicate cassette recording, plus keystore used by tests isn't thread safe. -->
<!-- FIXME
<!-- FIXME
<forkCount>2</forkCount>
<reuseForks>true</reuseForks>
<threadCount>1</threadCount>
Expand Down Expand Up @@ -370,8 +370,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<swagger-annotations-version>1.5.22</swagger-annotations-version>
<jersey-version>2.27</jersey-version>
<jackson-version>2.9.10</jackson-version>
<jackson-databind-version>2.9.10.4</jackson-databind-version>
<jackson-version>2.10.4</jackson-version>
<jackson-databind-version>2.10.4</jackson-databind-version>
<jackson-databind-nullable-version>0.2.0</jackson-databind-nullable-version>
<http-signature-version>1.3</http-signature-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
Expand Down
7 changes: 6 additions & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ echo "Ensuring all dependencies are present in LICENSE-3rdparty.csv ..."
# org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.27:compile
# * the second sed result
# org.glassfish.jersey.ext:jersey-entity-filtering
ALL_DEPS=`mvn dependency:tree -DoutputType=dot | grep -- "-> " | sed 's|.*-> "\(.*\)".*|\1|' | sed "s/\(.*\):jar:.*/\1/" | sort | uniq`
MVN_OUTPUT=`mvn dependency:tree -DoutputType=dot`
if [ $? -ne 0 ]; then
echo $MVN_OUTPUT
exit 1
fi
ALL_DEPS=`echo $MVN_OUTPUT | grep -- "-> " | sed 's|.*-> "\(.*\)".*|\1|' | sed "s/\(.*\):jar:.*/\1/" | sort | uniq`
DEPS_NOT_FOUND=""
for one_dep in `echo $ALL_DEPS`; do
set +e
Expand Down