mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-20 13:33:13 +00:00
17 lines
429 B
Bash
Executable File
17 lines
429 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=$(pwd)
|
|
# Relative paths are different when building locally versus on CI
|
|
if [[ "$dir" == *"package"* ]]; then
|
|
SRC_DIR=$dir/../../../../../../HIRS_Utils/src
|
|
DEST_DIR=$dir/../src/main/java/
|
|
else
|
|
SRC_DIR=../../HIRS_Utils/src
|
|
DEST_DIR=../src/main/java/
|
|
fi
|
|
|
|
XSD_FILE=$SRC_DIR/main/resources/swid_schema.xsd
|
|
|
|
if [ ! -d "$DEST_DIR/hirs/utils/xjc" ]; then
|
|
xjc -p hirs.utils.xjc $XSD_FILE -d $DEST_DIR -quiet
|
|
fi |