|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1'
|
|
|
|
classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.1.0'
|
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
libs = [
|
|
|
|
gson: 'com.google.code.gson:gson:2.8.6',
|
|
|
|
hamcrest: 'org.hamcrest:hamcrest:2.2',
|
|
|
|
jacksonDatabind: 'com.fasterxml.jackson.core:jackson-databind:2.11.3',
|
|
|
|
jettison: 'org.codehaus.jettison:jettison:1.4.1',
|
|
|
|
jsonOrg: 'org.json:json:20140107',
|
|
|
|
jsonSmart: 'net.minidev:json-smart:2.3',
|
|
|
|
slf4jApi: 'org.slf4j:slf4j-api:1.7.30',
|
|
|
|
tapestryJson: 'org.apache.tapestry:tapestry-json:5.6.1',
|
|
|
|
|
|
|
|
test: [
|
|
|
|
'commons-io:commons-io:2.8.0',
|
|
|
|
'junit:junit:4.12',
|
|
|
|
'org.assertj:assertj-core:3.18.1',
|
|
|
|
'org.hamcrest:hamcrest:2.2',
|
|
|
|
'org.slf4j:slf4j-simple:1.7.30'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
snapshotVersion = true
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
ext.displayName = null
|
|
|
|
ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss')
|
|
|
|
|
|
|
|
group = 'com.jayway.jsonpath'
|
|
|
|
version = '2.6.0' + (snapshotVersion ? "-SNAPSHOT" : "")
|
|
|
|
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'signing'
|
|
|
|
apply plugin: 'osgi'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
from javadoc
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar) {
|
|
|
|
classifier = 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
|
|
|
|
|
|
|
signing {
|
|
|
|
required { !snapshotVersion && gradle.taskGraph.hasTask("uploadArchives") }
|
|
|
|
sign configurations.archives
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives jar, javadocJar, sourcesJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wrapper {
|
|
|
|
gradleVersion = '5.6.2'
|
|
|
|
}
|
|
|
|
|
|
|
|
//Task used by Heroku for staging
|
|
|
|
task stage(dependsOn: [':json-path-web-test:clean', 'json-path-web-test:jar', 'json-path-web-test:shadowJar']) {}
|
|
|
|
apply from: "$rootDir/gradle/binaryCompatibility.gradle"
|