diff options
author | James Moger <james.moger@gitblit.com> | 2012-11-23 10:49:26 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-11-23 10:52:43 -0500 |
commit | f09f249c0eacbc73592c4f656a9c34f6bc1df1cc (patch) | |
tree | 63c7d629fa8e054c60dac79b327fff15f948fde0 | |
parent | e8c417f4e63f84ac6e14f6d5540dcb1f0f9862fc (diff) | |
download | gitblit-f09f249c0eacbc73592c4f656a9c34f6bc1df1cc.tar.gz gitblit-f09f249c0eacbc73592c4f656a9c34f6bc1df1cc.zip |
Added JCalendar 1.3.2 dependency
-rw-r--r-- | .classpath | 1 | ||||
-rw-r--r-- | NOTICE | 8 | ||||
-rw-r--r-- | docs/04_design.mkd | 1 | ||||
-rw-r--r-- | docs/04_releases.mkd | 1 | ||||
-rw-r--r-- | src/com/gitblit/build/Build.java | 7 |
5 files changed, 18 insertions, 0 deletions
@@ -33,6 +33,7 @@ <classpathentry kind="lib" path="ext/groovy-all-1.8.8.jar" sourcepath="ext/src/groovy-all-1.8.8-sources.jar" /> <classpathentry kind="lib" path="ext/unboundid-ldapsdk-2.3.0.jar" sourcepath="ext/src/unboundid-ldapsdk-2.3.0-sources.jar" /> <classpathentry kind="lib" path="ext/ivy-2.2.0.jar" sourcepath="ext/src/ivy-2.2.0-sources.jar" /> + <classpathentry kind="lib" path="ext/jcalendar-1.3.2.jar" /> <classpathentry kind="lib" path="ext/junit-4.10.jar" sourcepath="ext/src/junit-4.10-sources.jar" /> <classpathentry kind="lib" path="ext/hamcrest-core-1.1.jar" /> <classpathentry kind="output" path="bin/classes" /> @@ -230,4 +230,12 @@ UnboundID GNU LESSER GENERAL PUBLIC LICENSE. (http://www.unboundid.com/products/ldap-sdk/docs/LICENSE-LGPLv2.1.txt)
http://www.unboundid.com
+
+---------------------------------------------------------------------------
+JCalendar
+---------------------------------------------------------------------------
+ JCalendar, released under the
+ GNU LESSER GENERAL PUBLIC LICENSE. (http://www.unboundid.com/products/ldap-sdk/docs/LICENSE-LGPLv2.1.txt)
+
+ http://www.toedter.com/en/jcalendar
\ No newline at end of file diff --git a/docs/04_design.mkd b/docs/04_design.mkd index b4c623ef..c2a73592 100644 --- a/docs/04_design.mkd +++ b/docs/04_design.mkd @@ -42,6 +42,7 @@ The following dependencies are automatically downloaded by Gitblit GO (or alread - [Lucene](http://lucene.apache.org) (Apache 2.0)
- [UnboundID](http://www.unboundid.com) (LGPL 2.1)
- [Ivy](http://ant.apache.org/ivy) (Apache 2.0)
+- [JCalendar](http://www.toedter.com/en/jcalendar) (LGPL 2.1)
### Other Build Dependencies
- [Fancybox image viewer](http://fancybox.net) (MIT and GPL dual-licensed)
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index a3ea493d..99e92eee 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -85,6 +85,7 @@ If *realm.ldap.maintainTeams==true* **AND** *realm.ldap.admins* is not empty, th - updated to Wicket 1.4.21
- updated to Lucene 3.6.1
- updated to BouncyCastle 1.47
+- added JCalendar 1.3.2
<hr/>
diff --git a/src/com/gitblit/build/Build.java b/src/com/gitblit/build/Build.java index 481ead5c..c74c6cb7 100644 --- a/src/com/gitblit/build/Build.java +++ b/src/com/gitblit/build/Build.java @@ -100,6 +100,7 @@ public class Build { downloadFromApache(MavenObject.JAKARTA_REGEXP, BuildType.RUNTIME);
downloadFromApache(MavenObject.UNBOUND_ID, BuildType.RUNTIME);
downloadFromApache(MavenObject.IVY, BuildType.RUNTIME);
+ downloadFromApache(MavenObject.JCALENDAR, BuildType.RUNTIME);
downloadFromEclipse(MavenObject.JGIT, BuildType.RUNTIME);
downloadFromEclipse(MavenObject.JGIT_HTTP, BuildType.RUNTIME);
@@ -136,6 +137,7 @@ public class Build { downloadFromApache(MavenObject.JAKARTA_REGEXP, BuildType.COMPILETIME);
downloadFromApache(MavenObject.UNBOUND_ID, BuildType.COMPILETIME);
downloadFromApache(MavenObject.IVY, BuildType.COMPILETIME);
+ downloadFromApache(MavenObject.JCALENDAR, BuildType.COMPILETIME);
downloadFromEclipse(MavenObject.JGIT, BuildType.COMPILETIME);
downloadFromEclipse(MavenObject.JGIT_HTTP, BuildType.COMPILETIME);
@@ -742,6 +744,11 @@ public class Build { "f9d1e83e82fc085093510f7d2e77d81d52bc2081",
"0312527950ad0e8fbab37228fbed3bf41a6fe0a1", "");
+ public static final MavenObject JCALENDAR = new MavenObject(
+ "jcalendar", "com/toedter", "jcalendar", "1.3.2",
+ 127000, 0, 0,
+ "323a672aeacb5f5f4461be3b7f7d9d3e4bda80d4",
+ null, "");
public final String name;
public final String group;
|