https://www.kineman.com/new/webapp/index.php
Built on HTML5 technology
▼
2015年11月26日 星期四
[Screen Capture] Screen Capture Tool
Easy Screen Capture Tool:
For resizing images:
- irfanview
- snippingtool
For resizing images:
- picpick
2015年11月23日 星期一
[Maven] Prepare a Release and Perform a Release ( mvn release:prepare , mvn release:perform )
http://maven.apache.org/maven-release/maven-release-plugin/examples/prepare-release.html
Preparing a release goes through the following release phases:
- Check that there are no uncommitted changes in the sources
- Check that there are no SNAPSHOT dependencies
- Change the version in the POMs from x-SNAPSHOT to a new version (you will be prompted for the versions to use)
- Transform the SCM information in the POM to include the final destination of the tag
- Run the project tests against the modified POMs to confirm everything is in working order
- Commit the modified POMs
- Tag the code in the SCM with a version name (this will be prompted for)
- Bump the version in the POMs to a new value y-SNAPSHOT (these values will also be prompted for)
- Commit the modified POMs
Performing a release runs the following release phases:
- Checkout from an SCM URL with optional tag
- Run the predefined Maven goals to release the project (by default, deploy site-deploy)