properties 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # as environment variables
  2. # constants
  3. GS_GIT_URL=https://github.com/geoserver/geoserver.git
  4. GT_GIT_URL=https://github.com/geotools/geotools.git
  5. GWC_GIT_URL=https://github.com/GeoWebCache/geowebcache.git
  6. JIRA_REST=https://osgeo-org.atlassian.net/rest/api/latest
  7. JIRA_PROJ=GEOS
  8. SF_HOST=frs.sourceforge.net
  9. # maven environment
  10. MAVEN_FLAGS="$MAVEN_FLAGS --batch-mode -Dspotless.apply.skip=true"
  11. # Use settings.xml override if provided
  12. if [ -n "$MAVEN_SETTINGS" ]; then
  13. MAVEN_FLAGS="-s $MAVEN_SETTINGS $MAVEN_FLAGS"
  14. fi
  15. # parameter defaults
  16. if [ -z $branch ]; then
  17. branch="master"
  18. fi
  19. if [ -z $rev ]; then
  20. rev="HEAD"
  21. fi
  22. if [ -z $DIST_PATH ]; then
  23. DIST_PATH=/var/www/geoserver/release
  24. fi
  25. if [ -z $DIST_HOST ]; then
  26. DIST_HOST=build.geoserver.org
  27. fi
  28. if [ -z $DIST_URL ]; then
  29. DIST_URL=https://$DIST_HOST/geoserver/release
  30. fi
  31. if [ -z $DIST_PORT ]; then
  32. DIST_PORT=22
  33. fi
  34. if [ -z $DIST_USER ]; then
  35. DIST_USER=jenkins
  36. fi
  37. if [ -z $DIST_PK ]; then
  38. DIST_PK=$HOME/.ssh/id_rsa_${DIST_USER}_${DIST_HOST}
  39. fi
  40. if [ -z $SF_USER ]; then
  41. SF_USER=jdeolive
  42. fi
  43. if [ -z $SF_PK ]; then
  44. SF_PK=$HOME/.ssh/id_dsa_${SF_USER}_frs.sourceforge.net
  45. fi