Sha256: 55bbc2df9dd096da946b256562a4ddcb7187ce3099b390912f2f0c97b1a8a16c
Contents?: true
Size: 686 Bytes
Versions: 4
Compression:
Stored size: 686 Bytes
Contents
plugins { id "java" id "maven-publish" id "com.github.johnrengelman.shadow" } repositories { mavenCentral() } group = "${rootProject.group}" version = "${rootProject.version}" sourceCompatibility = 1.8 targetCompatibility = 1.8 configurations { runtimeClasspath { resolutionStrategy.activateDependencyLocking() } shadow { resolutionStrategy.activateDependencyLocking() transitive = false } } dependencies { implementation("com.kintone:kintone-java-client:1.4.0") { exclude group: "org.slf4j", module: "slf4j-api" } } shadowJar { relocate "com.fasterxml.jackson", "embulk.kintone.com.fasterxml.jackson" }
Version data entries
4 entries across 4 versions & 1 rubygems