mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #78 from overleaf/jpa-skip-tests
[misc] make: skip tests for the build and package target
This commit is contained in:
commit
cb3508223f
2 changed files with 13 additions and 2 deletions
|
@ -6,7 +6,7 @@ run: package
|
|||
|
||||
|
||||
build:
|
||||
mvn package
|
||||
mvn package -DskipTests
|
||||
|
||||
|
||||
test:
|
||||
|
@ -18,7 +18,7 @@ clean:
|
|||
|
||||
|
||||
package: clean
|
||||
mvn package
|
||||
mvn package -DskipTests
|
||||
|
||||
|
||||
.PHONY: run package build clean test
|
||||
|
|
|
@ -20,6 +20,17 @@ To be run from the base directory:
|
|||
**Clean**:
|
||||
`mvn clean`
|
||||
|
||||
To be run from the dev-environment:
|
||||
|
||||
**Build jar**:
|
||||
`bin/run git-bridge make package`
|
||||
|
||||
**Run tests**:
|
||||
`bin/run git-bridge make test`
|
||||
|
||||
**Clean**:
|
||||
`bin/run git-bridge make clean`
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue