What kind of build scripts are you using with sdfc...
# sdf
d
What kind of build scripts are you using with sdfcli to deploy? I haven't had a chance to check but is there a npm package out there to deploy?
b
i use gulp and the maven npm package
Copy code
var 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;
d
neat, thanks for sharing.
b
you would need sdfcli setup to the point that token based authentication is used