rename shipper to exporter

This commit is contained in:
Boaz Leskes 2013-11-19 09:51:14 +01:00
parent 963970556e
commit 63a6bfb59e
13 changed files with 13 additions and 13 deletions

16
.gitignore vendored
View file

@ -1,15 +1,15 @@
/work
/shipper/logs
/exporter/logs
.idea
/shipper/data
/shipper/target
/exporter/data
/exporter/target
.DS_Store
*.iml
/shipper/.project
/shipper/.classpath
/shipper/.settings
/shipper/config
/shipper/lib
/exporter/.project
/exporter/.classpath
/exporter/.settings
/exporter/config
/exporter/lib
/vendor/kibana
/node_modules
/build

View file

@ -5,7 +5,7 @@ module.exports = function (grunt) {
var config = {
pkg: grunt.file.readJSON('package.json'),
kibanaCheckoutDir: './vendor/kibana',
shipperDir: 'shipper',
exporterDir: 'exporter',
buildDir: 'build',
packageDir: 'packages',
tempDir: 'tmp',

View file

@ -1,7 +1,7 @@
module.exports = function (config) {
return {
plugin_to_marvel: {
cwd: '<%= shipperDir %>/target',
cwd: '<%= exporterDir %>/target',
expand: true,
src: ['<%= pkg.name %>-<%= pkg.version %>.jar'],
dest: '<%= buildDir %>'

View file

@ -2,12 +2,12 @@ module.exports = function (config) {
return {
maven_clean: {
command: 'mvn clean',
cwd: '<%= shipperDir %>',
cwd: '<%= exporterDir %>',
options: {
stdout: true,
failOnError: true,
execOptions: {
cwd: '<%= shipperDir %>',
cwd: '<%= exporterDir %>',
}
},
},
@ -17,7 +17,7 @@ module.exports = function (config) {
stdout: true,
failOnError: true,
execOptions: {
cwd: '<%= shipperDir %>',
cwd: '<%= exporterDir %>',
}
},
},