]> source.dussan.org Git - sonarqube.git/commitdiff
Rename tool scripts
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 8 Oct 2014 09:42:51 +0000 (11:42 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 8 Oct 2014 10:30:07 +0000 (12:30 +0200)
debug-server.sh [new file with mode: 0755]
debug.sh [deleted file]
jacoco-build.sh [new file with mode: 0644]
jacoco_build.sh [deleted file]

diff --git a/debug-server.sh b/debug-server.sh
new file mode 100755 (executable)
index 0000000..5dadb3b
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+
+cd sonar-application/target/
+if ! ls sonarqube-*/bin/sonar-application*.jar &> /dev/null; then
+  unzip sonarqube-*.zip
+fi
+
+cd sonarqube-*
+java -jar ./lib/sonar-application*.jar -Dsonar.web.javaOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
\ No newline at end of file
diff --git a/debug.sh b/debug.sh
deleted file mode 100755 (executable)
index 5dadb3b..0000000
--- a/debug.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-
-cd sonar-application/target/
-if ! ls sonarqube-*/bin/sonar-application*.jar &> /dev/null; then
-  unzip sonarqube-*.zip
-fi
-
-cd sonarqube-*
-java -jar ./lib/sonar-application*.jar -Dsonar.web.javaOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
\ No newline at end of file
diff --git a/jacoco-build.sh b/jacoco-build.sh
new file mode 100644 (file)
index 0000000..11ceb34
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+export MAVEN_OPTS='-Xmx256m'
+mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install -B -e -V -Pcoverage-per-test -Dmaven.test.failure.ignore=true
diff --git a/jacoco_build.sh b/jacoco_build.sh
deleted file mode 100644 (file)
index 11ceb34..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-export MAVEN_OPTS='-Xmx256m'
-mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install -B -e -V -Pcoverage-per-test -Dmaven.test.failure.ignore=true