aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build.sh3
-rwxr-xr-xbin/compile.sh3
-rwxr-xr-xbin/generate-openapi.sh3
-rwxr-xr-xbin/sonarqube.sh3
-rwxr-xr-xbin/test.sh3
5 files changed, 15 insertions, 0 deletions
diff --git a/bin/build.sh b/bin/build.sh
new file mode 100755
index 0000000..b402ba6
--- /dev/null
+++ b/bin/build.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./gradlew build
diff --git a/bin/compile.sh b/bin/compile.sh
new file mode 100755
index 0000000..3605462
--- /dev/null
+++ b/bin/compile.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./gradlew compileJava -x spotbugsMain -x spotbugsTest -x spotlessJava
diff --git a/bin/generate-openapi.sh b/bin/generate-openapi.sh
new file mode 100755
index 0000000..3306f4a
--- /dev/null
+++ b/bin/generate-openapi.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./gradlew -p openapi clean compileJava -x spotbugsMain -x spotbugsTest -x spotlessJava
diff --git a/bin/sonarqube.sh b/bin/sonarqube.sh
new file mode 100755
index 0000000..0047966
--- /dev/null
+++ b/bin/sonarqube.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./gradlew sonarqube -Dsonar.branch.name=local-ce -Dsonar.host.url=https://sonarqube.devops.telekom.de -Dsonar.login=5392bed06c65e0bbce329ad625cf8554ce467052
diff --git a/bin/test.sh b/bin/test.sh
new file mode 100755
index 0000000..ca731bf
--- /dev/null
+++ b/bin/test.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./gradlew test -x spotbugsMain -x spotbugsTest -x spotlessJava