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.
23 lines
452 B
23 lines
452 B
10 years ago
|
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
|
||
|
}
|
||
|
|