Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-maven-deploy

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-maven-deploy

Simple gulp plugin for the maven-deploy module

  • 0.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
294
decreased by-60.96%
Maintainers
2
Weekly downloads
 
Created
Source

gulp-maven-deploy

A Gulp wrapper for the maven-deploy module. Enables you to have projects which are built with Gulp, but deploys to Maven repositories.

Build Status Dependency Status devDependency Status

NPM

All the samples below requires a basic understanding of Gulp and Maven. Please look at the documentation for those projects for details.

Installing

$ npm install gulp-maven-deploy --save-dev

Sample usage in a gulpfile.js

Below are two configuration samples:

Configuring a task for deploying to a Maven proxy

var maven = require('gulp-maven-deploy');

gulp.task('deploy', function(){
	gulp.src('.')
	.pipe(maven.deploy({
		'config': {
			'groupId': 'com.mygroup',
			'type': 'war',
			'repositories': [
				{
					'id': 'some-repo-id',
					'url': 'http://some-repo/url'
				}
			]
		}
	}))
});

A task running a local Maven install:

var maven = require('gulp-maven-deploy');

gulp.task('deploy-local', function(){
	gulp.src('.')
	.pipe(maven.install({
		'config': {
			'groupId': 'com.mygroup',
			'type': 'war'
		}
	}))
});

Note: A local install in Maven means it is only available on your machine. A deployment is different as it means you ship the artifact off to some remote repository.

Sample project

There is a complete sample project if you checkout the samples directory.

$ npm install
$ ./node_modules/.bin/gulp

This will install gulp and allow you to run the sample. Gulp will run with with a local deploy configuration. You should see an artifact in the dist folder and a file deployed to your local M2_HOME repository.

Running tests

$ npm test

Contributions

All pull requests and issues are welcome!

Big thanks to Gregers for making the maven-deploy module.

Keywords

FAQs

Package last updated on 22 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc