Skip to content

Commit

Permalink
remove System.out.println
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB committed Aug 29, 2009
1 parent 8cccaec commit 84b0b7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/scala_tools/maven/ScalaDocMojo.java
Expand Up @@ -336,7 +336,6 @@ public void generate(Sink sink, Locale locale) throws MavenReportException {
if (project.hasParent()) {
MavenProject parent = project.getParent();
List<MavenProject> modules = parent.getCollectedProjects();
System.out.println(">>> modules size " + modules.size());
if ((modules.size() > 1) && project.equals(modules.get(modules.size() - 1))) {
aggregate(parent);
}
Expand Down
8 changes: 3 additions & 5 deletions src/main/java/org/scala_tools/maven/ScalaMojoSupport.java
Expand Up @@ -513,12 +513,10 @@ private Set<String> getCompilerPlugins() throws Exception {
Set<String> plugins = new HashSet<String>();
if (compilerPlugins != null) {
Set<String> ignoreClasspath = new HashSet<String>();
addToClasspath(SCALA_GROUPID, "scala-compiler", scalaVersion,
ignoreClasspath);
addToClasspath(SCALA_GROUPID, SCALA_LIBRARY_ARTIFACTID,
scalaVersion, ignoreClasspath);
addToClasspath(SCALA_GROUPID, "scala-compiler", scalaVersion, ignoreClasspath);
addToClasspath(SCALA_GROUPID, SCALA_LIBRARY_ARTIFACTID, scalaVersion, ignoreClasspath);
for (BasicArtifact artifact : compilerPlugins) {
System.out.println("compiler plugin: " + artifact.toString());
getLog().info("compiler plugin: " + artifact.toString());
// TODO - Ensure proper scala version for plugins
Set<String> pluginClassPath = new HashSet<String>();
//TODO - Pull in transitive dependencies.
Expand Down

0 comments on commit 84b0b7b

Please sign in to comment.