mirror of https://github.com/grpc/grpc-java.git
11 lines
422 B
Bash
Executable File
11 lines
422 B
Bash
Executable File
#!/bin/bash -e
|
|
TARGET='Test Service Server'
|
|
TARGET_CLASS='com.google.net.stubby.testing.integration.TestServiceServer'
|
|
TARGET_ARGS="$@"
|
|
|
|
cd "$(dirname "$0")"
|
|
mvn -q -nsu -pl integration-testing -am package -Dcheckstyle.skip=true -DskipTests
|
|
. integration-testing/target/bootclasspath.properties
|
|
echo "[INFO] Running: $TARGET ($TARGET_CLASS $TARGET_ARGS)"
|
|
exec java "$bootclasspath" -cp "$jar" "$TARGET_CLASS" $TARGET_ARGS
|