Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidyaaa24 authored Jul 12, 2023
1 parent fcc44aa commit 013d898
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
module.exports = function (grunt) {

grunt.loadNpmTasks('grunt-war');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
war: {
target: {
options: {
war_dist_folder: 'target', /* Folder where to generate the WAR. */
war_name: '1097ui-v1.0', /* The name fo the WAR file (.war will be the extension) */
webxml_display_name: '1097ui-v1.0',
},
files: [
{
expand: true,
cwd: 'dist',
src: ['**'],
dest: ''
}
]
}
}
});

grunt.registerTask('default', ['war']);
};

0 comments on commit 013d898

Please sign in to comment.