Skip to content

Commit 251e121

Browse files
committed
Avoid use of 'install' in favour of 'verify' in packaging scripts.
- Only use 'install' goal if absolutely necessary (ie. the artifact will be used in a subsequent build, or call to 'mvn' Signed-off-by: Roland Grunberg <[email protected]>
1 parent dcda593 commit 251e121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gulp.task('buildExtension', (done) => {
4848
});
4949

5050
gulp.task('buildQuteServer', (done) => {
51-
cp.execSync(mvnw() + ' clean install -DskipTests', { cwd: quteServerDir , stdio: 'inherit' });
51+
cp.execSync(mvnw() + ' clean verify -DskipTests', { cwd: quteServerDir , stdio: 'inherit' });
5252
gulp.src(quteServerDir + '/target/' + quteServer)
5353
.pipe(gulp.dest('./server'));
5454
done();

0 commit comments

Comments
 (0)