Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eskatos/qi4j-dev-scripts
Scripts I use to ease my Qi4j development
https://github.com/eskatos/qi4j-dev-scripts
Last synced: about 2 months ago
JSON representation
Scripts I use to ease my Qi4j development
- Host: GitHub
- URL: https://github.com/eskatos/qi4j-dev-scripts
- Owner: eskatos
- License: apache-2.0
- Created: 2011-04-09T22:52:12.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-20T14:45:08.000Z (over 12 years ago)
- Last Synced: 2024-11-01T20:06:39.250Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 109 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qi4j-dev-scripts
Clone and add the bin folder to your $PATH.
Theses scripts are mostly tryouts written in shell script as I am comfortable with sh.
Some could be ported to the Qi4j build system once proven useful.## qi4j-build
This command can be run from any directory containing a Qi4j build.gradle file.
qi4j-build [-p group:project] command [flags]
-p Select the target project
group can be core, library, extension, tool, sample or tutorial
project is the base name of the targeted submoduleAvailable commands
clean Clean output
test Run tests
install Install only main artifacts
devinstall Install javadoc and sources artifacts
distinstall Install distributions archivesAvailable flags
skipTests Skip testsExamples
qi4j-build clean
qi4j-build devinstall
qi4j-build library:servlet test
qi4j-build extension:entitystore-file test
qi4j-build libraries install
qi4j-build extensions install
qi4j-build distinstall