diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2017-08-28 15:55:55 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2017-08-28 17:10:41 +0800 |
commit | bd36ad0992f45f6d2efd2f5d90cb573a4f003310 (patch) | |
tree | 05fa4a9f776ee30ef7a7eff2a2ed3a3f812cb24b /engine-d-standalone/src/main/assembly/bin/run.sh | |
parent | 4fd730a89753cff0e9ef604f0e0b6a91e1a04c26 (diff) |
Modify the configruation for docker-making
Add some dependencies in the pom.xml
Change the main path of the entrypoint of the app
Change-Id: I8242b9502fff28e5c90a111a95cd996db47d0ffc
Issue-ID: HOLMES-39
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'engine-d-standalone/src/main/assembly/bin/run.sh')
-rw-r--r-- | engine-d-standalone/src/main/assembly/bin/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine-d-standalone/src/main/assembly/bin/run.sh b/engine-d-standalone/src/main/assembly/bin/run.sh index a403aeb..a1aa671 100644 --- a/engine-d-standalone/src/main/assembly/bin/run.sh +++ b/engine-d-standalone/src/main/assembly/bin/run.sh @@ -21,7 +21,7 @@ echo @RUNHOME@ $RUNHOME echo @JAVA_HOME@ $JAVA_HOME JAVA="$JAVA_HOME/bin/java" echo @JAVA@ $JAVA -main_path=$RUNHOME/../ +main_path=$RUNHOME/.. cd $main_path JAVA_OPTS="-Xms50m -Xmx128m" port=8312 @@ -31,5 +31,5 @@ echo @JAVA_OPTS@ $JAVA_OPTS class_path="$main_path/:$main_path/holmes-engine-d.jar" echo @class_path@ $class_path -"$JAVA" $JAVA_OPTS -classpath "$class_path" EngineDActiveApp server "$main_path/conf/engine-d.yml" +"$JAVA" $JAVA_OPTS -classpath "$class_path" org.onap.holmes.engine.EngineDActiveApp server "$main_path/conf/engine-d.yml" |