Skip to content

Commit

Permalink
Moving the 'dev' folder into the root, since it is not an IDM project…
Browse files Browse the repository at this point in the history
… resource
  • Loading branch information
jakefeasel committed Jun 2, 2014
1 parent 6e87992 commit 4735fb2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.project
.vagrant
.DS_Store
node_modules
target
src/main/resources/dev/node_modules
6 changes: 3 additions & 3 deletions src/main/resources/dev/Gruntfile.js → Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ module.exports = function(grunt) {
grunt.initConfig({
watch: {
copy: {
files: ['../ui/**/*.js','../script/*.js','../**/*.groovy', '../ui/**/*.html', '../conf/*.json', '../ui/**/*.less', '../ui/**/*.css'],
files: ['src/main/resources/ui/**/*.js','src/main/resources/script/*.js','src/main/resources/**/*.groovy', 'src/main/resources/ui/**/*.html', 'src/main/resources/conf/*.json', 'src/main/resources/ui/**/*.less', 'src/main/resources/ui/**/*.css'],
tasks: [ 'sync' ]
}
},
sync: {
custom: {
files: [{
cwd : '..',
cwd : 'src/main/resources',
src : ['**/*'],
dest : '../../../../target/sqlfiddle',
dest : 'target/sqlfiddle',
flatten : false,
expand : true
}]
Expand Down
File renamed without changes.
3 changes: 0 additions & 3 deletions src/main/assembly/zip.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
<directory>${basedir}/src/main/resources</directory>
<outputDirectory>/</outputDirectory>
<fileMode>0640</fileMode>
<excludes>
<exclude>dev/*</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/idm-staging/openidm</directory>
Expand Down

0 comments on commit 4735fb2

Please sign in to comment.