Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I compile a Scala project with mixed java and scala code with dependencies both ways in Maven?

I have a project which has both scala and java code which I am currently managing in eclipse using the scala IDE plugin. At present the directory structure is organized such that some packages have both java and scala code in them. There are scala classes which depend on java classes and there are other java classes which depend on the scala classes. The plugin handles all of this transparently – I believe (but I’m not 100% sure) that the scala compiler compiles both the java and scala code together which is how the cross dependencies are handled. I did find some references to compiling mixed projects using Maven e.g. here but the ones I saw talking about separating the java and scala into two separate source trees. Maven attempts to compile the scala code first which fails because of the dependencies on the java code. Likewise, if the java code were compiled first it would also fail as the dependencies go both ways. Is there a way to have Maven compile all the code together like the eclipse plugin? I’d also like to have the ability to generate an eclipse project without doing too much manual fix-up afterwards if possible.

like image 292
Shane Avatar asked Aug 30 '12 02:08

Shane


People also ask

Can I mix Scala and Java?

Is it possible to mix Scala and Java code? Yes, there is the ability to mix both types of code. It is possible to create an SBT project, put Scala code in src/main/scala and java code in src/main/java in the same project and make it work.

Is Scala fully interoperable with Java?

Of all the alternative JVM languages, Scala's interoperability with Java source code is among the most seamless.

Can maven be used for Scala?

If you're familiar with Maven, you can go ahead with the Scala Maven Plugin.

How Scala code is compiled?

Scala is compiled into Java Byte Code which is executed by the Java Virtual Machine (JVM). This means that Scala and Java have a common runtime platform. If you or your organization has standardized on Java, Scala is not going to be a total stranger in your architecture. It's a different language, but the same runtime.


1 Answers

The usual Maven directory structure is

src/
  main/
    java/
      com/foo/mypackage/
    scala/
      com/foo/mypackage/

If you set things up this way then for sure you can have cross dependencies between your Java and Scala code. See the maven-scala-plugin or scala-maven-plugin pages on the topic.

I would not recommend putting Java and Scala code in the same directory.

like image 185
sourcedelica Avatar answered Sep 29 '22 00:09

sourcedelica