1 # 2 # build.properties 3 # 4 # Author: Lasse Collin <lasse.collin (at] 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 10 title = XZ data compression 11 homepage = https://tukaani.org/xz/java.html 12 version = 1.8 13 debug = 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. 20 sourcever = 1.5 21 22 src_dir = src 23 build_dir = build 24 dist_dir = ${build_dir}/dist 25 dist_file = ${dist_dir}/xz-java-${version}.zip 26 classes_dir = ${build_dir}/classes 27 jar_dir = ${build_dir}/jar 28 doc_dir = ${build_dir}/doc 29 30 extdoc_url = https://docs.oracle.com/javase/9/docs/api 31 extdoc_dir = extdoc 32 33 pom_template = maven/pom_template.xml 34 maven_dir = ${build_dir}/maven 35