mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
600aa8d9cf
We've had build issues be hidden by caching. So we should build from clean each time, in immitation of the prod build process.
24 lines
261 B
Makefile
24 lines
261 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
|
|
|
|
|
|
test:
|
|
mvn test
|
|
|
|
|
|
clean:
|
|
mvn clean
|
|
|
|
|
|
package: clean
|
|
mvn package
|
|
|
|
|
|
.PHONY: run package build clean test
|