mirror of
https://github.com/minio/minio.git
synced 2024-12-28 16:15:56 -05:00
18 lines
248 B
Bash
18 lines
248 B
Bash
|
#!/bin/bash -e
|
||
|
#
|
||
|
#
|
||
|
|
||
|
test_run_dir="$MINT_RUN_CORE_DIR/aws-sdk-java"
|
||
|
|
||
|
cd "$(dirname "$(realpath "$0")")"
|
||
|
|
||
|
ant init-ivy && \
|
||
|
ant resolve && \
|
||
|
ant compile && \
|
||
|
ant jar
|
||
|
|
||
|
cp build/jar/FunctionalTests.jar "$test_run_dir/"
|
||
|
|
||
|
rm -rf lib/ build/
|
||
|
|