Skip to content

Commit

Permalink
Completely remove maven from Grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
bedrin committed Oct 10, 2020
1 parent 16754af commit ef990bd
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,10 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-notify');
grunt.loadNpmTasks("grunt-image-embed");
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-maven-tasks');
grunt.loadNpmTasks('grunt-notify');

// Default task
grunt.registerTask('default', ['less', 'imageEmbed', 'includereplace:iframe', 'htmlmin', 'jshint', 'includereplace:dist', 'uglify', 'copy', 'maven:install']);

if (pkg.version.indexOf('SNAPSHOT') !== -1) {
grunt.registerTask('travis', ['default', 'maven:deploy']);
} else {
grunt.registerTask('travis', ['default']);
}
grunt.registerTask('default', ['less', 'imageEmbed', 'includereplace:iframe', 'htmlmin', 'jshint', 'includereplace:dist', 'uglify', 'copy']);

grunt.task.run('notify_hooks');
};
Expand Down

0 comments on commit ef990bd

Please sign in to comment.