-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove root pom.xml and run deploy on github actions with Make deploy
- Loading branch information
Showing
4 changed files
with
37 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.PHONY: install | ||
install: | ||
./mvnw install -f geoserver/src/pom.xml --batch-mode -DskipTests -ntp -fae \ | ||
-PallExtensions,communityRelease \ | ||
-Dsort.skip=true -Dspotless.apply.skip=true | ||
|
||
.PHONY: deploy | ||
deploy: | ||
./mvnw deploy -f geoserver/src/pom.xml --batch-mode -DskipTests -ntp -fae \ | ||
-PallExtensions,communityRelease \ | ||
-Dsort.skip=true -Dspotless.apply.skip=true \ | ||
-DretryFailedDeploymentCount=10 \ | ||
-DallowIncompleteProjects=true \ | ||
-DaltDeploymentRepository='github::https://maven.pkg.github.com/camptocamp/geoserver-cloud-geoserver' \ | ||
-Dmaven.resolver.transport=wagon | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# GeoServer Cloud GeoServer | ||
|
||
This is the deployment repository for the customized GeoServer version used by GeoSever Cloud | ||
|
||
## Install and deploy | ||
|
||
On a local machine, before pushing to this github repository, in order to test the artifacts, run | ||
|
||
|
||
``` | ||
make install | ||
``` | ||
|
||
The CI build runs instead | ||
|
||
``` | ||
make deploy | ||
``` | ||
|
||
> `install` does not need to be run before `deploy` |