File tree Expand file tree Collapse file tree
ga/latest/kernel/helpers/build Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717set -Eeo pipefail
1818
19- INFINISPAN_CLIENT_VERSION=${INFINISPAN_CLIENT_VERSION:- 10.1.3.Final}
20- INFINISPAN_USE_LATEST_COMPATIBLE=${INFINISPAN_USE_LATEST_COMPATIBLE:- false}
19+ INFINISPAN_LATEST_STABLE_VERSION=" 14.0.0.Final"
20+ INFINISPAN_CLIENT_VERSION=${INFINISPAN_CLIENT_VERSION:- $INFINISPAN_LATEST_STABLE_VERSION }
21+ INFINISPAN_USE_LATEST_STABLE=${INFINISPAN_USE_LATEST_STABLE:- false}
2122
2223pkgcmd=yum
2324if ! command $pkgcmd
@@ -47,8 +48,8 @@ cat << EOF > /opt/ibm/wlp/usr/shared/resources/infinispan/pom.xml
4748</project>
4849EOF
4950
50- if [ " ${INFINISPAN_USE_LATEST_COMPATIBLE } " = " true" ]; then
51- echo " Finding latest compatible Infinispan client version..."
51+ if [ " ${INFINISPAN_USE_LATEST_STABLE } " = " true" ]; then
52+ echo " Finding latest stable Infinispan client version..."
5253 mvn -f /opt/ibm/wlp/usr/shared/resources/infinispan/pom.xml versions:use-latest-releases -DallowMajorUpdates=false
5354fi
5455mvn -f /opt/ibm/wlp/usr/shared/resources/infinispan/pom.xml dependency:copy-dependencies -DoutputDirectory=/opt/ibm/wlp/usr/shared/resources/infinispan
You can’t perform that action at this time.
0 commit comments