diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1d6ba0086765a59b2de64e4a5a1236726a0a0ecc
--- /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: deploy
+  image: maven:latest
+  script:
+    - mvn compile assembly:single
+  artifacts:
+     name: "release"
+     paths:
+         - target/corpus-web-service-1.0-SNAPSHOT.jar