Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vietj/releaser-maven-plugin
A plugin for doing various release operations
https://github.com/vietj/releaser-maven-plugin
Last synced: 20 days ago
JSON representation
A plugin for doing various release operations
- Host: GitHub
- URL: https://github.com/vietj/releaser-maven-plugin
- Owner: vietj
- Created: 2015-03-10T10:12:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-20T13:34:30.000Z (about 7 years ago)
- Last Synced: 2024-11-08T20:49:56.134Z (2 months ago)
- Language: Java
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A plugin for releasing large projects with Maven peacefully
### Proxy
An HTTP proxy for Nexus that speed up deployment time by a 100-factor employing basic well known performance tricks:
- single write principle
- aggressive pipelining
- multiple connections
- near cachingUsage:
```
# anywhere
> mvn com.julienviet:releaser-maven-plugin:1.0-SNAPSHOT:proxy -DstagingProfileId=$NEXUS_PROFILE -DstagingUsername=$NEXUS_USERNAME -DstagingPassword=$NEXUS_PASSWORD
Proxy started, you can deploy to http://localhost:8080
```You can then deploy to this repository instead of Nexus, the proxy will handle all the uploads quickly and efficiently
upload them to Nexus in the background:```
# in your project
> mvn deploy -DaltDeploymentRepository=local::default::http://localhost:8080/
```The proxy will log the activity on the console:
```
Creating staging repo for 198f9fdcad2785
Created staging repo iovertx-3729 for 198f9fdcad2785
In progress 1
In progress 2
In progress 3
...
```### Apply mojo
Mass version change
Not documented (yet)
### Release mojo
Mass releasing
Not documented (yet)
### Tag mojo
Mass tagging
Not documented (yet)