mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
f98212e96b
http://maven.apache.org/plugins-archives/maven-surefire-plugin-2.12.4/examples/skipping-test.html
24 lines
285 B
Makefile
24 lines
285 B
Makefile
# git-bridge makefile
|
|
|
|
|
|
run: package
|
|
java -jar target/writelatex-git-bridge-1.0-SNAPSHOT-jar-with-dependencies.jar conf/local.json
|
|
|
|
|
|
build:
|
|
mvn package -DskipTests
|
|
|
|
|
|
test:
|
|
mvn test
|
|
|
|
|
|
clean:
|
|
mvn clean
|
|
|
|
|
|
package: clean
|
|
mvn package -DskipTests
|
|
|
|
|
|
.PHONY: run package build clean test
|