diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..754a522ecc18b45e61a7fa4a7ba9b9956946d4c6
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,11 @@
+stages:          # List of stages for jobs, and their order of execution
+  - deploy
+build-job:       # This job runs in the build stage, which runs first.
+  stage: check
+  script:
+    - apk add openjdk11-jre-headless
+    - mvn compile assembly:single
+  artifacts:
+     name: "release"
+     path:
+         - target/corpus-web-service-1.0-SNAPSHOT.jar