up vote 23 down vote favorite
10
share [g+] share [fb]

I have an application where I would like to have mixed Java and Scala source (actually its migrating a java app to scala - but a bit at a time).

I can make this work in IDEs just fine, very nice. But I am not sure how to do this with maven - scalac can compile java and scala intertwined, but how to I set up maven for the module?

Also, does my scala source have to be a different folder to the java?

link|improve this question

feedback

6 Answers

up vote 10 down vote accepted

Using the maven scala plugin, a config like the one below will work for a project that mixes java and scala source (scala source of course goes in the /scala directory, as mentioned by someone else).

You can run run mvn compile, test etc... and it will all work as normal. Very nice (it will run scalac first automatically).

For a great IDE, IntelliJ 8 works nicely: add in the scala plug in, then add a scala facet, and then adjust the compile setting for scala to run scalac first (critical if you have circular dependencies with scala and java source).

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>demo</groupId>
<artifactId>scala-java-app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>scala-java-app</name>
<repositories>
	<repository>
		<id>scala-tools.org</id>
		<name>Scala-tools Maven2 Repository</name>
		<url>http://scala-tools.org/repo-releases</url>
	</repository>
</repositories>
<pluginRepositories>
	<pluginRepository>
		<id>scala-tools.org</id>
		<name>Scala-tools Maven2 Repository</name>
		<url>http://scala-tools.org/repo-releases</url>
	</pluginRepository>
</pluginRepositories>
<build>
	<plugins>
		<plugin>
			<groupId>org.scala-tools</groupId>
			<artifactId>maven-scala-plugin</artifactId>
			<executions>

				<execution>
					<id>compile</id>
					<goals>
						<goal>compile</goal>
					</goals>
					<phase>compile</phase>
				</execution>
				<execution>
					<id>test-compile</id>
					<goals>
						<goal>testCompile</goal>
					</goals>
					<phase>test-compile</phase>
				</execution>
                <execution>
                   <phase>process-resources</phase>
                   <goals>
                     <goal>compile</goal>
                   </goals>
                </execution>
			</executions>
		</plugin>
		<plugin>
			<artifactId>maven-compiler-plugin</artifactId>
			<configuration>
				<source>1.5</source>
				<target>1.5</target>
			</configuration>
		</plugin>
	</plugins>	
</build>
<dependencies>
	<dependency>
		<groupId>org.scala-lang</groupId>
		<artifactId>scala-library</artifactId>
		<version>2.7.2</version>
	</dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>

link|improve this answer
Thanks, this worked really well! – James Kingsbery Nov 6 '09 at 17:28
Agreed that IntelliJ is the superior Scala IDE right now. With Odersky and Bonér working on Eclipse Scala IDE it should catch up eventually, but right now it's not nearly as good as IntelliJ – toolbear Jun 28 '11 at 20:31
feedback

Yeah, the scala part has to be in a separate module and in src/main/scala directory. Maven regards mixed source like this as heresy.

You enable scala compilation by importing the scala maven plugin. The "usage" page as a good example.

link|improve this answer
Can the scala code call java source in the same module and vice versa? When I am in intelliJ - it shows it all together anyway, so its not a huge deal. – Michael Neale Dec 3 '08 at 4:23
Oh and will this hook in to mvn compile etc? (I can see how scala:compile works). – Michael Neale Dec 3 '08 at 4:24
yes this works quite well. – Michael Neale Dec 16 '08 at 0:16
2  
First of all, Java and Scala files can be in the same module. And second, they can be also in the same sources directory. You just have to set the maven option configuration->sourceDir of the scala plugin to tell maven where the source files are. – Stefan Endrullis Apr 1 '11 at 12:27
feedback

Look at Sonatype Maven Cookbook Chapter 3. Scala and Maven

link|improve this answer
feedback

I once asked a very similar question about how to include non-Java code in a Maven project. The gist of the answer was to have under src a different directory for each programming language, and to find/write a Maven plugin that would know what to do with each. Eg:

src/
|-- main
|   |-- bin
|   |-- sh
|   |-- sql
|   |-- scala
|   |-- java
|   `-- resources
|-- site
...
link|improve this answer
feedback

I solved this some time ago by having one Maven module written in Scala and the other in Java. But since Scala and Java can cross depend on one another (Java -> Scala -> Java or the other way around), then this is something very desirable without multi module projects.

There is work underway in solving this, you can read about it here and a new version of the maven-scala-plugin will be released soon.

link|improve this answer
I have had some success with scala-tools.org/mvnsites/maven-scala-plugin for the moment - not sure if that is what you were referring to or not. – Michael Neale Dec 4 '08 at 11:25
feedback

Maven is notorious for being difficult when attempting to handle nonobvious cases. I suggest that you follow the example of the rest of the industry and abandon Maven.

Ant is an obvious alternate choice if you are considering/using Maven, and add Ivy to get some of the goodness from Maven without the pain.

Beyond that, there are several other choices. Maven is problematic because it does too much magic without explaining itself or allowing you much easy control. It is overly complicated both in concept and in implementation. Therefore, seek an alternative that is simple, straightforward, tweakable, extendable, and proven.

Best wishes.

link|improve this answer
that's not really an answer. Sorry. – Michael Neale Dec 11 '08 at 2:57
1  
well don't bother posting - wasting your and others times. Move on. – Michael Neale Dec 15 '08 at 5:29
Some people actually want to know when their problems are caused by bad assumptions or bad tools. I have been through similar pain that prompted such a question--I wish that someone would have shared their experience and saved me all the trouble with Maven. – Rob Williams Dec 15 '08 at 7:30
4  
We just switched to Maven from Ant/Ivy hell and I never felt better. About 40 various configuration and build files are gone in the puff – DroidIn.net Sep 8 '09 at 15:49
1  
I don't think this deserved negative votes. As Rob said, it's better to be informed. However the phrase with which I really have a problem with is "[...] follow the example of the rest of the industry and abandon Maven". Now I really want to know where that industry is. I work for almost 6 years and every project I worked on/with/heard about (this sums to hundreds) is using or is switching to Maven. Yes Maven is harder to use in non-standard cases but for most of the time it's a delight to use. As someone said "it suffers from a certain stigma that was once deserved but is no longer valid" – Cristian Vrabie Dec 10 '10 at 11:20
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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