After cloning the repository, here’s how to build.
-
Ensure you have git and JDK 8 or above installed. All other dependencies are included in the repository.
-
Set the
JAVA_HOME
environment variable to point to the directory where the JDK is installed. For example:-
export JAVA_HOME=/usr/lib/jvm/openjdk-11
← Ubuntu, etc. -
export JAVA_HOME=$(/usr/libexec/java_home)
← macOS -
set JAVA_HOME=C:\Program Files\Java\jdk-11
← Windows
-
-
Clone the repository
git clone https://github.com/relaxng/jing-trang.git`
-
Change your working directory to be the
jing-trang
directory (that is, the directory containing this file). -
Run the
ant
script included in the repository. On Linux, use the command./ant
. On Windows, use.\ant
. That runs the version ofant
included in the repository. When theant
script completes, you should findjing.jar
andtrang.jar
files in thebuild
subdirectory. You can also tell theant
script to build thetest
target, which will build the jars and then run some tests. On Linux, use the command./ant test
. On Windows, use.\ant test
.