20 lines
581 B
Bash
20 lines
581 B
Bash
#!/bin/bash
|
|
#
|
|
# This is the recipe Jenkins uses to build the Playground war file.
|
|
#
|
|
|
|
export MVN_PROJECTS_DEPLOY="dtcore dtcs dtdb dtservlet"
|
|
export MVN_PROJECTS_1="configuration"
|
|
export MAKE_PROJECTS_1="libeye libeye.js"
|
|
export MVN_PROJECTS_2="javacore javamq"
|
|
export MAKE_PROJECTS_2="resources"
|
|
export MVN_PROJECTS_3="sleds-core-api javaweb webcore playground"
|
|
export MVN_TEST="dtcore dtcs dtdb libeye javacore"
|
|
|
|
# Subprojects to deploy via 'mvn deploy'.
|
|
# Only one project...
|
|
export DEPLOY_MVN_PROJECTS="playground"
|
|
export DEPLOY_MAKE_PROJECTS=""
|
|
|
|
. masterbuild/jenkins.Build.sh
|