update to jackson 2.9.10, junit 5.5.2

This commit is contained in:
Jörg Prante 2019-11-06 21:59:08 +01:00
parent 339327ee81
commit 5bd9ab2d2b
5 changed files with 14 additions and 9 deletions

4
.travis.yml Normal file
View file

@ -0,0 +1,4 @@
language: java
jdk:
- openjdk11

View file

@ -1,8 +1,8 @@
plugins {
id "org.sonarqube" version "2.6.1"
id "io.codearte.nexus-staging" version "0.11.0"
id "com.github.spotbugs" version "2.0.0"
id "org.sonarqube" version "2.8"
id "io.codearte.nexus-staging" version "0.21.1"
id "com.github.spotbugs" version "2.0.1"
id "org.xbib.gradle.plugin.asciidoctor" version "1.5.6.0.1"
}

View file

@ -3,9 +3,9 @@ name = net
version = 2.0.3
# test
junit.version = 5.5.1
junit.version = 5.5.2
hamcrest.version = 2.1
jackson.version = 2.9.9
jackson.version = 2.9.10
# doc
asciidoclet.version = 1.5.4
asciidoclet.version = 1.5.6

View file

@ -1,5 +1,6 @@
#Wed Nov 06 21:26:30 CET 2019
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

View file

@ -84,7 +84,7 @@ public class QueryParameters extends ArrayList<Pair<String, String>> {
add(percentDecoder.decode(pair.getFirst()),
percentDecoder.decode(pair.getSecond()));
} catch (MalformedInputException | UnmappableCharacterException e) {
throw new IllegalArgumentException(e);
throw new IllegalArgumentException("name=" + pair.getFirst() + " value=" + pair.getSecond(), e);
}
}
s = pairs.getSecond();