summaryrefslogtreecommitdiffstats
path: root/messagebus_test/src/binref/compilejava.in
blob: da5414e3ce417d1d0b10a68a5a74221e36bd54c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
unset VESPA_LOG_TARGET
CLASSPATH=@PROJECT_SOURCE_DIR@/messagebus/target/messagebus-jar-with-dependencies.jar
CLASSPATH=$CLASSPATH:@PROJECT_SOURCE_DIR@/component/target/component.jar
CLASSPATH=$CLASSPATH:.

if [ $# -lt 1 ]; then
  echo "usage: compilejava file ..."
  exit 1
fi
exec javac -d . -classpath $CLASSPATH "$@"