From 615af14477b5ba896662c160c41c50a86e9203cc Mon Sep 17 00:00:00 2001 From: James Moger Date: Thu, 2 Feb 2012 17:39:10 -0500 Subject: [PATCH] Drop -javadoc jar dependencies, they are unnecessary --- .classpath | 116 ++++++------------------------- src/com/gitblit/build/Build.java | 2 +- 2 files changed, 21 insertions(+), 97 deletions(-) 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); -- 2.39.5