-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Deploy to Central | ||
|
||
```shell | ||
## confirm on master and building | ||
git checkout master | ||
mvn clean verify | ||
|
||
## set the appropriate version | ||
mvs | ||
|
||
## run tests and package | ||
mvn -T 4 clean package | ||
|
||
## deploy | ||
mvn -T 4 deploy -pl '!composites,!platforms' -Pcentral -DskipTests -DskipStagingRepositoryClose=true -DstagingProgressTimeoutMinutes=9 | ||
|
||
## git commit, git tag, git push --tags | ||
|
||
## convert to javax | ||
./jakarta-to-javax.sh | ||
|
||
## set javax version | ||
mvs | ||
|
||
## deploy javax | ||
mvn -T 4 clean package | ||
mvn -T 4 deploy -pl '!composites,!platforms' -Pcentral -DskipTests -DskipStagingRepositoryClose=true -DstagingProgressTimeoutMinutes=9 | ||
|
||
## checkout / cleanup | ||
git checkout . | ||
|
||
## goto ebean-15x branch | ||
git checkout ebean-15x | ||
|
||
## update ebean-15x branch from master and resolve conflicts | ||
git merge master | ||
## resolve conflicts | ||
## git commit, git push | ||
|
||
## set 15.x version | ||
mvs | ||
|
||
## build and deploy 15.x | ||
mvn -T 4 clean package | ||
mvn -T 4 deploy -pl '!composites,!platforms' -Pcentral -DskipTests -DskipStagingRepositoryClose=true -DstagingProgressTimeoutMinutes=9 | ||
|
||
``` | ||
|
||
|