Initial commit

This commit is contained in:
jar3b
2019-02-13 13:33:20 +03:00
commit f4527aefdd
63 changed files with 7657 additions and 0 deletions

18
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,18 @@
stages:
- build
build:
stage: build
image: icha/ci-image:java-8-jcp-nodocker
variables:
MAVEN_OPTS: "-Dmaven.repo.local=/m2"
script:
- mvn install
- ls -lR /m2
artifacts:
paths:
- target/
expire_in: 1 week
only:
- tags
- master