diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
new file mode 100644
index 0000000000..e519f16f82
--- /dev/null
+++ b/.github/workflows/android.yml
@@ -0,0 +1,26 @@
+name: Android CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: set up JDK 11
+ uses: actions/setup-java@v3
+ with:
+ java-version: '11'
+ distribution: 'temurin'
+ cache: gradle
+
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew build
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000000..825103e871
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Java CI with Maven
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 11
+ uses: actions/setup-java@v3
+ with:
+ java-version: '11'
+ distribution: 'temurin'
+ cache: maven
+ - name: Build with Maven
+ run: mvn -B package --file pom.xml
diff --git a/Dockerfile b/Dockerfile
index 365e7b059a..f4d2a83557 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,2 @@
-FROM tomcat:8.0.20-jre8
-# Dummy text to test
-COPY target/*.war /usr/local/tomcat/webapps/maven-web-app.war
+FROM tomcat:9.0.64-jre8-openjdk-slim-buster
+COPY target/*.war /usr/local/tomcat/webapps/td.war
diff --git a/JudithJenkinsDeclarativeScript b/JudithJenkinsDeclarativeScript
new file mode 100644
index 0000000000..0d91ea5fd4
--- /dev/null
+++ b/JudithJenkinsDeclarativeScript
@@ -0,0 +1,23 @@
+pipeline{
+ agent any
+ tools{
+ maven "maven3.8.5"
+ }
+ stages{
+ stage("1.CodeClone"){
+ steps{
+ git credentialsId: 'GitHub-Cred', url: 'https://github.com/judiefriend/maven-web-app.git'
+ }
+ }
+ stage("2.Build"){
+ steps{
+ sh "mvn clean package"
+ }
+ }
+ stage("3.CodeQuality"){
+ steps{
+ sh "mvn sonar:sonar"
+ }
+ }
+ }
+}
diff --git a/pom.xml b/pom.xml
index 804a0beaf0..c7a8a0ec86 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,9 +21,9 @@