blob: fd5c37312f4688102c3855ecf5a043022e9f4036 [file] [log] [blame]
Lasse Collina592ef62011-07-26 20:11:45 +03001#
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
Lasse Collin8aa09962017-04-19 22:07:46 +030011homepage = https://tukaani.org/xz/java.html
Lasse Collin689d1b42018-01-04 17:39:58 +020012version = 1.8
Lasse Collind6f4f422011-07-27 23:10:48 +030013debug = false
Lasse Collina592ef62011-07-26 20:11:45 +030014
Lasse Colline5067e22018-01-02 21:32:31 +020015# 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
Lasse Collin1ae6acf2017-12-29 17:05:43 +020022src_dir = src
Lasse Collina592ef62011-07-26 20:11:45 +030023build_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
Lasse Collin39681f02018-01-02 21:38:08 +020030extdoc_url = https://docs.oracle.com/javase/9/docs/api
Lasse Collina592ef62011-07-26 20:11:45 +030031extdoc_dir = extdoc
Lasse Collin5e542ff2011-10-21 12:03:49 +030032
33pom_template = maven/pom_template.xml
34maven_dir = ${build_dir}/maven