Browse Source

Added JCalendar 1.3.2 dependency

tags/v1.2.0
James Moger 11 years ago
parent
commit
f09f249c0e
5 changed files with 18 additions and 0 deletions
  1. 1
    0
      .classpath
  2. 8
    0
      NOTICE
  3. 1
    0
      docs/04_design.mkd
  4. 1
    0
      docs/04_releases.mkd
  5. 7
    0
      src/com/gitblit/build/Build.java

+ 1
- 0
.classpath View File

@@ -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" />

+ 8
- 0
NOTICE View File

@@ -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

+ 1
- 0
docs/04_design.mkd View File

@@ -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)

+ 1
- 0
docs/04_releases.mkd View File

@@ -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/>

+ 7
- 0
src/com/gitblit/build/Build.java View File

@@ -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;

Loading…
Cancel
Save