grunt-kevoree-registry
v4.0.0
Published
Grunt plugin to publish Kevoree models to a Kevoree Registry
Downloads
5
Maintainers
Readme
grunt-kevoree-registry
Grunt plugin that handles POST of Kevoree models to registry.kevoree.org using kevoree-registry-client
Getting Started
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-kevoree-registry --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-kevoree-registry');
The "kevoree_registry" task
Overview
In your project's Gruntfile, add a section named kevoree_registry
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
kevoree_registry: {
main: {
options: {
registry: {
host: 'localhost',
port: 8080,
ssl: false,
},
user: {
login: 'kevoree',
password: null // this will force password prompt even if HOME/.kregrc specifies a user:password
}
},
src: 'kevlib.json'
}
}
});
Options
options.registry.host
Type: String
Default value: 'registry.kevoree.org'
A string value used to specified the remote Kevoree registry you want to publish the model to.
options.registry.port
Type: Number
Default value: 80
A number value used to specified the remote Kevoree registry's port you want to publish the model to.
options.registry.ssl
Type: boolean
Default value: false
A boolean used to define whether or not the client needs to connect via HTTPS or HTTP
options.user.login
Type: String
Default value: undefined
A string used to log in to the Kevoree Registry
Command line options
You can also update the default host and port of the targeted registry directly in the command line. For example the following command will try to publish the deploy unit to a registry located at http://localhost:8080/
$ grunt publish --kevoree-registry-host=localhost --kevoree-registry-port=8008