aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pom.xml4
-rw-r--r--src/main/bin/start.sh4
-rw-r--r--version.properties2
3 files changed, 6 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 4f76eeb..b5b2f6a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,7 +33,7 @@
<groupId>org.onap.aai</groupId>
<artifactId>babel</artifactId>
- <version>1.13.3-SNAPSHOT</version>
+ <version>1.13.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>aai-babel</name>
@@ -733,7 +733,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>3.0.0-M4</version>
+ <version>3.0.0-M8</version>
<configuration>
<!-- Sets the VM argument line used when unit tests are run. -->
<reuseForks>false</reuseForks>
diff --git a/src/main/bin/start.sh b/src/main/bin/start.sh
index d68d6c8..4d9912d 100644
--- a/src/main/bin/start.sh
+++ b/src/main/bin/start.sh
@@ -53,6 +53,8 @@ if [ ! -z "$SERVER_CERTS_LOCATION" ]; then
fi
PROPS="${PROPS} -Dspring.profiles.active=${SPRING_PROFILES_ACTIVE}"
PROPS="${PROPS} -Daaf.cadi.file=${CONFIG_HOME}/cadi.properties"
+PROPS="${PROPS} -Daaf.cadi.file=${CONFIG_HOME}/cadi.properties"
-exec java ${JVM_OPTS} ${PROPS} -jar ${APP_HOME}/babel*.jar
+JVM_OPTS="${JVM_OPTS} -XX:MaxRAMPercentage=${MAX_RAM_PERCENTAGE:-60}"
+exec java ${JVM_OPTS} ${PROPS} -jar ${APP_HOME}/babel*.jar
diff --git a/version.properties b/version.properties
index 776da6a..798f495 100644
--- a/version.properties
+++ b/version.properties
@@ -4,7 +4,7 @@
major=1
minor=13
-patch=3
+patch=4
base_version=${major}.${minor}.${patch}