Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is my maven project structure

ProjectParent
 -Class1
 -Class2
 -Module1 (another sub directory)
 --Module1Class1
 --Module1Class2

Now when I run Module1Class1 from IntelliJ my current working directory is where ProjectParent directory, but when I run Module1Class1 from eclipse, my current working directoru is ProjectParent/Module1 directory.

Why this is different in intellij & how can I change this, so my current directory is always from where my class started execution like in this example 'Module1Class1' directory.

share|improve this question

2 Answers

up vote 3 down vote accepted

You should edit the template Run/Debug configuration and specify $MODULE_DIR$ variable in the Working directory field.

All the new configurations will inherit this default setting and the variable will be substituted with the directory of the module that you want to run.

There is a feature request to make it the default setting, please vote.

share|improve this answer

You can edit the working directory from within the run configurations dialog.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.