From: James Moger Date: Thu, 2 Feb 2012 22:39:10 +0000 (-0500) Subject: Drop -javadoc jar dependencies, they are unnecessary X-Git-Tag: v0.9.0~119 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=615af14477b5ba896662c160c41c50a86e9203cc;p=gitblit.git Drop -javadoc jar dependencies, they are unnecessary --- diff --git a/.classpath b/.classpath index fe0143bf..47dcc1bc 100644 --- a/.classpath +++ b/.classpath @@ -4,103 +4,27 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + diff --git a/src/com/gitblit/build/Build.java b/src/com/gitblit/build/Build.java index 682adcad..ccb4265b 100644 --- a/src/com/gitblit/build/Build.java +++ b/src/com/gitblit/build/Build.java @@ -270,7 +270,7 @@ public class Build { if (BuildType.RUNTIME.equals(type)) { jars = new String[] { "" }; } else if (BuildType.COMPILETIME.equals(type)) { - jars = new String[] { "-sources", "-javadoc" }; + jars = new String[] { "-sources" }; } for (String jar : jars) { File targetFile = mo.getLocalFile("ext", jar);