Refactor liblttng-ust-jul in liblttng-ust-agent
[lttng-ust.git] / doc / examples / java-jul / run
CommitLineData
849202d4
DG
1#!/bin/bash
2
3#
4# The -cp path should be changed to the lttng ust JUL jar file on your system
5# or locally to the project. Same goes for the Java library path in order to
6# find the JNI JUL library.
7#
8
9DIR=`dirname $0`
501f6777 10JARFILE="liblttng-ust-agent.jar"
849202d4
DG
11
12cd $DIR
13
14if [ -f "$DIR/.intree" ]; then
501f6777
CB
15 CLASSPATH="../../../liblttng-ust-java-agent/java/$JARFILE"
16 LIBPATH="../../../liblttng-ust-java-agent/jni/jul/.libs"
849202d4 17else
501f6777 18 CLASSPATH="/usr/local/share/java/$JARFILE:/usr/share/java/$JARFILE"
849202d4
DG
19 LIBPATH="/usr/local/lib:/usr/lib"
20fi
21
22java -cp "$CLASSPATH:." -Djava.library.path="$LIBPATH" Hello
23
24cd -
This page took 0.023905 seconds and 4 git commands to generate.