1# 2# build.properties 3# 4# Author: Lasse Collin <lasse.collin@tukaani.org> 5# 6# This file has been put into the public domain. 7# You can do whatever you want with this file. 8# 9 10title = XZ data compression 11homepage = https://tukaani.org/xz/java.html 12version = 1.8 13debug = false 14 15# sourcever sets -source and -target options for javac. 16# 17# The source code is Java 5 compatible but the oldest -source/-target pair 18# that OpenJDK 9 supports is 1.6 (Java 6). Edit this if you are using 19# OpenJDK 9 or later. 20sourcever = 1.5 21 22src_dir = src 23build_dir = build 24dist_dir = ${build_dir}/dist 25dist_file = ${dist_dir}/xz-java-${version}.zip 26classes_dir = ${build_dir}/classes 27jar_dir = ${build_dir}/jar 28doc_dir = ${build_dir}/doc 29 30extdoc_url = https://docs.oracle.com/javase/9/docs/api 31extdoc_dir = extdoc 32 33pom_template = maven/pom_template.xml 34maven_dir = ${build_dir}/maven 35