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

My maven layout is similar to:

Parent
  - ChildJ
  - ChildS

ChildJ contains Java code (code generated via the Google Protobuf Java compiler) ChildS contains Scala code

When using pure maven, I install ChildJ to the repository, and then ChildS compiles just fine.

When using idea and telling to compile module ChildS, it seems to gather the dependencies itself and passes them to the Scala compiler. Normally this should be ok, but since a subtle Java/Scala cooperation issue, the compiler bails out.

So, can I tell IntelliJ to use ChildJ either from the repository, or compile it separately using javac and pass in the class files/jar as dependency?

Note: Might be related to IntelliJ IDEA: Maven,project compilation and deployment

share|improve this question

1 Answer

Did you find solution? I think the only way is to create separate project and import only one module.

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.