Merge branch 'authentication-credentials' of https://github.com/Nicol… · jsonld-java/jsonld-java-tools@a17d0a4 · GitHub
Skip to content

Commit a17d0a4

Browse files
committed
Merge branch 'authentication-credentials' of https://github.com/NicolasRouquette/jsonld-java-tools into NicolasRouquette-authentication-credentials
Signed-off-by: Peter Ansell <p_ansell@yahoo.com>
2 parents 32c64dc + 4d66ffc commit a17d0a4

3 files changed

Lines changed: 194 additions & 7 deletions

File tree

README.md

Lines changed: 13 additions & 0 deletions

jsonldplayground

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
#
77
# run ./jsonldplayground for the usage
88

9-
if [ ! -d "target/appassembler/bin" ]; then
9+
TOP=$(dirname $0)
10+
11+
if [ ! -d "${TOP}/target/appassembler/bin" ]; then
1012
echo -e "Building with maven... (This could fail if you haven't previously run 'mvn install' on jsonld-java)\n">&2
11-
mvn -quiet clean install -DskipTests
13+
(cd "${TOP}"; mvn -quiet clean install -DskipTests)
1214
fi
1315

14-
chmod u+x target/appassembler/bin/*
15-
target/appassembler/bin/jsonldplayground "$@"
16+
chmod u+x "${TOP}/target/appassembler/bin"/*
17+
"${TOP}/target/appassembler/bin/jsonldplayground" "$@"

src/main/java/com/github/jsonldjava/tools/Playground.java

Lines changed: 175 additions & 3 deletions

0 commit comments

Comments
 (0)