diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml
new file mode 100644
index 0000000..d01c7dc
--- /dev/null
+++ b/.github/workflows/java-ci.yml
@@ -0,0 +1,23 @@
+name: Java CI
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 11
+ uses: actions/setup-java@v3
+ with:
+ java-version: '11'
+ distribution: 'adopt'
+ cache: maven
+ - name: Test with Maven
+ run: mvn --batch-mode --update-snapshots test
+ working-directory: deploy/aws/java11Exec
diff --git a/deploy/aws/java11Exec/pom.xml b/deploy/aws/java11Exec/pom.xml
index dd8349e..6c59bb4 100644
--- a/deploy/aws/java11Exec/pom.xml
+++ b/deploy/aws/java11Exec/pom.xml
@@ -9,6 +9,7 @@
11
11
+ UTF-8