mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
24 lines
354 B
Makefile
24 lines
354 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 --no-transfer-progress package -DskipTests
|
|
|
|
|
|
test:
|
|
mvn --no-transfer-progress test
|
|
|
|
|
|
clean:
|
|
mvn clean
|
|
|
|
|
|
package: clean
|
|
mvn --no-transfer-progress package -DskipTests
|
|
|
|
|
|
.PHONY: run package build clean test
|