Add makefile and basic dockerfile

This commit is contained in:
Shane Kilkelly
2018-10-08 10:36:20 +01:00
parent 0908e8e607
commit 33dbbe49ff
3 changed files with 40 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# git-bridge makefile
run: package
java -jar target/writelatex-git-bridge-1.0-SNAPSHOT-jar-with-dependencies.jar config/local.json
build:
mvn package
test:
mvn test
clean:
mvn clean
package:
mvn package
.PHONY: build clean test