diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-13 19:17:41 +0100 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-13 19:17:41 +0100 |
commit | 83aa7256c70c4e2f48778c4d64e95665f7eca7dd (patch) | |
tree | bfca5437a248c9a100bd8349ef2a065b3be6eca9 | |
parent | dff2f68c8d045037248e4924c48b100d2d5d05d8 (diff) | |
download | sonarqube-83aa7256c70c4e2f48778c4d64e95665f7eca7dd.tar.gz sonarqube-83aa7256c70c4e2f48778c4d64e95665f7eca7dd.zip |
activate the dev profile in quick-build scripts
-rw-r--r-- | quick-build.bat | 2 | ||||
-rwxr-xr-x | quick-build.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quick-build.bat b/quick-build.bat index 639cb13ae1a..a72fc8a4a6a 100644 --- a/quick-build.bat +++ b/quick-build.bat @@ -1,2 +1,2 @@ set MAVEN_OPTS=-Xmx768m -XX:MaxPermSize=256m -mvn clean install -Dtest=false -DfailIfNoTests=false
\ No newline at end of file +mvn clean install -Dtest=false -DfailIfNoTests=false -Ddev
\ No newline at end of file diff --git a/quick-build.sh b/quick-build.sh index 9e04cbd96e3..fe5fb3708b7 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -1,4 +1,4 @@ #!/bin/sh # it is recommended to use maven 3.0-beta-1 (or more) for faster builds -mvn clean install -Dtest=false -DfailIfNoTests=false
\ No newline at end of file +mvn clean install -Dtest=false -DfailIfNoTests=false -Ddev
\ No newline at end of file |