From 547c20a3f8044f00492411f4a64fe5c74b3bc2ac Mon Sep 17 00:00:00 2001 From: Raffi Khatchadourian Date: Sat, 15 Apr 2023 15:29:49 -0400 Subject: [PATCH] Address https://github.com/wala/ML/issues/28. See https://maven.apache.org/plugins/maven-shade-plugin/examples/attached-artifact.html for reference. --- com.ibm.wala.cast.python.ml/pom.xml | 1 + com.ibm.wala.cast.python.ml/run.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/com.ibm.wala.cast.python.ml/pom.xml b/com.ibm.wala.cast.python.ml/pom.xml index c8ae761d4..875cb7ef4 100644 --- a/com.ibm.wala.cast.python.ml/pom.xml +++ b/com.ibm.wala.cast.python.ml/pom.xml @@ -94,6 +94,7 @@ com.ibm.wala.cast.python.ml.driver.Ariadne + true diff --git a/com.ibm.wala.cast.python.ml/run.sh b/com.ibm.wala.cast.python.ml/run.sh index 347fcde5e..251f00ead 100755 --- a/com.ibm.wala.cast.python.ml/run.sh +++ b/com.ibm.wala.cast.python.ml/run.sh @@ -3,4 +3,4 @@ ME=`realpath $0` DIR=`dirname $ME` -cat -u | tee -a /tmp/lsp.in.log | $JAVA_HOME/bin/java -Xdebug -Xrunjdwp:transport=dt_socket,address=127.0.0.1:6660,server=y,suspend=n -jar $DIR/target/com.ibm.wala.cast.python.ml-0.0.1-SNAPSHOT.jar --mode stdio | tee -a /tmp/lsp.out.log +cat -u | tee -a /tmp/lsp.in.log | $JAVA_HOME/bin/java -Xdebug -Xrunjdwp:transport=dt_socket,address=127.0.0.1:6660,server=y,suspend=n -jar $DIR/target/com.ibm.wala.cast.python.ml-0.0.1-SNAPSHOT-shaded.jar --mode stdio | tee -a /tmp/lsp.out.log