Files
commafeed/.openshift/action_hooks/pre_build_jbosseap-6.0

7 lines
419 B
Plaintext
Raw Normal View History

2013-03-20 20:33:42 +01:00
#!/bin/bash
# This is a simple bash script and will be sourced prior to building
# your application. This script can be used to modify the Maven build
# arguments for non-CI/Jenkins builds by exporting MAVEN_ARGS. The default
# is "clean package -Popenshift -DskipTests"
2013-05-25 15:54:19 +02:00
export MAVEN_ARGS="clean package -Popenshift -Pprod -DskipTests=true"
2013-07-10 12:20:12 +02:00
export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m -Dmaven.artifact.threads=20"