File size: 308 Bytes
9074cf1 1e35eec 9074cf1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /bin/bash
## download embeddings.txt
# dvc pull embeddings.txt.dvc
## or copy it of a previous build
# unzip -j binary/graphseg.jar embeddings.txt
cp embeddings.txt source/res/
cd source
mvn package
mkdir -p ../binary
mv target/graphseg-0.0.1-SNAPSHOT-jar-with-dependencies.jar ../binary/graphseg.jar
|