Skip to content
 
 

Latest commit

 

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-jiveps

A Grunt plugin that contains tasks used by Jive Professional Services.

Tasks

createExtension

Creates a jive-sdk extension.zip

Options

outputDirectory

Type: String
Default: null

Directory where the extension.zip will be placed.

mavenDeploy

A multi-task that deploys an artifact to a Maven repository

Options

groupId

Type: String
Default: null

Project Group ID

url

Type: String
Default: null

Maven repository URL

version

Type: String
Default: null

Project version

repositoryId

Type: String
Default: null

Maven Repository ID

artifactId

Type: String
Default: null

Project artifact ID

Example

grunt.initConfig({
    mavenDeploy: {
        options: {
            groupId: grunt.option('groupId'),
            url: grunt.option('repositoryUrl'),
            version: grunt.option('projectVersion'),
            repositoryId: grunt.option('repositoryId'),
            artifactId: '<%= pkg.name %>'
        },
        extension: {
            file: '<%= target_dir %>/<%= pkg.name %>-<%= version %>-extension.zip',
            classifier: 'extension'
        },
        service: {
            file: '<%= target_dir %>/<%= pkg.name %>-<%= version %>-service.zip',
            classifier: 'service'
        }
    }
});
//...
grunt.registerTask('deploy', ['mavenDeploy:extension', 'mavenDeploy:service']);

writeArtifactList

Creates an artifact-list.properties to be consumed by the Jive PS Jenkins release plugin

Options

groupId

Type: String
Default: null

Project Group ID

repositoryUrl

Type: String
Default: null

Maven Repository URL

artifactId

Type: String
Default: null

Project Artifact ID

version

Type: String
Default: null

Project Version

Files

Type: Array
Default: null

Array of file names to list

filename

Type: String
Default: null

Output file name/path

About

Collection of grunt tasks used by Jive Professional Services

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages