dbaghdanov
02/12/2019, 6:27 PMbattk
02/12/2019, 6:41 PMbattk
02/12/2019, 6:41 PMvar maven = require('maven');
function deploy() {
	return maven
		.create({
			file: 'path/to/pom.xml',
			quiet: true
		})
		.execute('exec:java', {
			'exec.args': 'deploy -np -sw -p different/path/to/project'
		});
}
module.exports.deploy = deploy;dbaghdanov
02/12/2019, 6:42 PMbattk
02/12/2019, 6:45 PM