/* * Copyright 2018 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ plugins { id 'java' id 'java-library' // give us access to api/implementation differences for building java libraries id 'maven' // // setup checking for the latest version of a plugin or dependency (and updating the gradle build) // id "se.patrikerdes.use-latest-versions" version "0.2.3" // id 'com.github.ben-manes.versions' version '0.16.0' } ext { bcVersion = '1.60' jnaVersion = '4.5.2' } sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 sourceSets { main { java { setSrcDirs Collections.singletonList('src') } } test { java { setSrcDirs Collections.singletonList('test') } } } repositories { mavenLocal() jcenter() } dependencies { api group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25' api group: 'com.github.jponge', name: 'lzma-java', version: '1.3' api group: 'com.fasterxml.uuid', name: 'java-uuid-generator', version: '3.1.5' api group: 'com.esotericsoftware', name: 'kryo', version: '4.0.2' api group: 'io.netty', name: 'netty-all', version: '4.1.24.Final' api group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: bcVersion api group: 'org.bouncycastle', name: 'bcpg-jdk15on', version: bcVersion api group: 'org.bouncycastle', name: 'bcmail-jdk15on', version: bcVersion // api group: 'org.bouncycastle', name: 'bctls-jdk15on', version: bcVersion api group: 'org.lwjgl', name: 'lwjgl-xxhash', version: '3.2.0' api group: 'org.javassist', name: 'javassist', version: '3.23.0-GA' api group: 'com.dorkbox', name: 'ShellExecutor', version: '1.1+' api group: 'net.java.dev.jna', name: 'jna', version: jnaVersion api group: 'net.java.dev.jna', name: 'jna-platform', version: jnaVersion // unit testing testImplementation group: 'junit', name: 'junit', version: '4.12' testRuntime group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.6' } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' options.incremental = true options.fork = true options.forkOptions.executable = 'javac' // setup compile options. we specifically want to suppress usage of "Unsafe" options.compilerArgs += ['-XDignore.symbol.file', '-Xlint:deprecation'] }