You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
452 B
22 lines
452 B
apply from: "$rootDir/gradle/publishMaven.gradle" |
|
|
|
displayName = "Json Path" |
|
|
|
description = "Java port of Stefan Goessner JsonPath." |
|
|
|
jar { |
|
baseName 'json-path' |
|
manifest { |
|
attributes 'Implementation-Title': 'json-path', 'Implementation-Version': version |
|
} |
|
} |
|
|
|
dependencies { |
|
compile libs.jsonSmart |
|
compile libs.jacksonDatabind, optional |
|
compile libs.gson, optional |
|
compile libs.slf4jApi |
|
|
|
testCompile libs.test |
|
} |
|
|
|
|