You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.9 KiB
40 lines
1.9 KiB
#!/bin/sh |
|
|
|
DIRNAME=`pwd` |
|
ulimit -n 65536 >/dev/null 2>&1 |
|
ulimit -c unlimited |
|
# resolve links - $0 may be a softlink |
|
PRG="$0" |
|
while [ -h "$PRG" ]; do |
|
ls=`ls -ld "$PRG"` |
|
link=`expr "$ls" : '.*-> \(.*\)$'` |
|
if expr "$link" : '/.*' > /dev/null; then |
|
PRG="$link" |
|
else |
|
PRG=`dirname "$PRG"`/"$link" |
|
fi |
|
done |
|
|
|
# Get standard environment variables |
|
PRGDIR=`dirname "$PRG"` |
|
|
|
EMBED_HOME=`cd ${PRGDIR}/ && pwd` |
|
|
|
if [ -n "$1" ]; then |
|
EMBED_HOME=$1 |
|
fi |
|
|
|
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-core-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-el-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-jsp-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DpomFile=${EMBED_HOME}/lib/tongweb-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-starter-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DpomFile=${EMBED_HOME}/lib/tongweb-websocket-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar |
|
|
|
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-lic-sdk -Dversion=4.5.0.0 -Dfile=${EMBED_HOME}/lib/tongweb-lic-sdk-4.5.0.0.jar -Dpackaging=jar |
|
|
|
|