I'm using SBT 0.11.2 for a mixed Java/Scala project. I've realized that when I run the doc command from within SBT, it does not only create the scaladocs for the Scala source files in src/main/scala, but also for the Java source files in src/main/java (the SBT wiki claims to create them for src/main/scala only which is therefore not true).
However, this does not look very well. For instance, for a Java class named Foo with static methods there are two entries in the generated scaladoc: A Foo class and a Foo object. The class only lists the constructor and the object lists the static methods.
This makes sense, but I don't like this behavior. Is there any way I can tell SBT to exclude the src/main/java folder from the scaladoc generation? I want to create javadocs for those instead.
Thanks!