Updated to JGit 1.1.0 and reverse-sort library dependencies.
| | |
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="lib" path="ext/junit-4.8.2.jar" sourcepath="C:/Users/James Moger/.m2/repository/junit/junit/4.8.2/junit-4.8.2-sources.jar"/>
|
| | | <classpathentry kind="lib" path="ext/org.eclipse.jgit-1.0.0.201106090707-r.jar" sourcepath="ext/org.eclipse.jgit-1.0.0.201106090707-r-sources.jar">
|
| | | <attributes>
|
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/org.eclipse.jgit-1.0.0.201106090707-r-javadoc.jar!/"/>
|
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="lib" path="ext/org.eclipse.jgit.http.server-1.0.0.201106090707-r.jar" sourcepath="ext/org.eclipse.jgit.http.server-1.0.0.201106090707-r-sources.jar">
|
| | | <attributes>
|
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/org.eclipse.jgit.http.server-1.0.0.201106090707-r-javadoc.jar!/"/>
|
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="lib" path="ext/jetty-webapp-7.4.3.v20110701.jar" sourcepath="ext/jetty-webapp-7.4.3.v20110701-sources.jar">
|
| | | <attributes>
|
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/jetty-webapp-7.4.3.v20110701-javadoc.jar!/"/>
|
| | |
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/wicket-extensions-1.4.18-javadoc.jar!/"/>
|
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="lib" path="ext/org.eclipse.jgit-1.1.0.201109151100-r.jar" sourcepath="ext/org.eclipse.jgit-1.1.0.201109151100-r-sources.jar">
|
| | | <attributes>
|
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/org.eclipse.jgit-1.1.0.201109151100-r-javadoc.jar!/"/>
|
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="lib" path="ext/org.eclipse.jgit.http.server-1.1.0.201109151100-r.jar" sourcepath="ext/org.eclipse.jgit.http.server-1.1.0.201109151100-r-sources.jar">
|
| | | <attributes>
|
| | | <attribute name="javadoc_location" value="jar:platform:/resource/gitblit/ext/org.eclipse.jgit-1.1.0.201109151100-r-javadoc.jar!/"/>
|
| | | </attributes>
|
| | | </classpathentry>
|
| | | <classpathentry kind="output" path="bin"/>
|
| | | </classpath>
|
| | |
| | | - added: javamail dependency
|
| | | - updated: MarkdownPapers 1.1.1
|
| | | - updated: Wicket 1.4.18
|
| | | - updated: JGit 1.1.0
|
| | |
|
| | | issues, binaries, and sources @ [Google Code][googlecode]<br/>
|
| | | sources @ [Github][gitbltsrc]
|
| | |
| | | ### Creating your own Self-Signed Certificate
|
| | | Gitblit GO automatically generates an ssl certificate for you that is bound to *localhost*.
|
| | |
|
| | | Remote Eclipse/EGit/JGit clients (<= 1.0.0) will fail to communicate using this certificate because JGit always verifies the hostname of the certificate, regardless of the *http.sslVerify=false* client-side setting.
|
| | | Remote Eclipse/EGit/JGit clients (<= 1.1.0) will fail to communicate using this certificate because JGit always verifies the hostname of the certificate, regardless of the *http.sslVerify=false* client-side setting.
|
| | |
|
| | | The EGit failure message is something like:
|
| | |
|
| | |
| | | **NOTE:**<br/>
|
| | | The default self-signed certificate generated by Gitlbit GO is bound to *localhost*.<br/>
|
| | | If you are using Eclipse/EGit/JGit clients, you will have to generate your own certificate that specifies the exact hostname used in your clone/push url.<br/>
|
| | | You must do this because Eclipse/EGit/JGit (<= 1.0.0) always verifies certificate hostnames, regardless of the *http.sslVerify=false* client-side setting. |
| | | You must do this because Eclipse/EGit/JGit (<= 1.1.0) always verifies certificate hostnames, regardless of the *http.sslVerify=false* client-side setting. |
| | |
|
| | | - Eclipse/EGit/JGit
|
| | | 1. Window->Preferences->Team->Git->Configuration
|
| | |
| | | - added: javamail dependency
|
| | | - updated: MarkdownPapers 1.1.1
|
| | | - updated: Wicket 1.4.18
|
| | | - updated: JGit 1.1.0
|
| | |
|
| | | ### Older Releases
|
| | |
|
| | |
| | |
|
| | | // The build script extracts this exact line so be careful editing it
|
| | | // and only use A-Z a-z 0-9 .-_ in the string.
|
| | | public static final String JGIT_VERSION = "JGit 1.0.0 (201106090707-r)";
|
| | | public static final String JGIT_VERSION = "JGit 1.1.0 (201109151100-r)";
|
| | |
|
| | | public static final String ADMIN_ROLE = "#admin";
|
| | |
|
| | |
| | | import java.text.MessageFormat;
|
| | | import java.util.ArrayList;
|
| | | import java.util.Arrays;
|
| | | import java.util.Collections;
|
| | | import java.util.List;
|
| | |
|
| | | import com.gitblit.build.Build;
|
| | |
| | | List<File> found = findJars(libFolder.getAbsoluteFile());
|
| | | jars.addAll(found);
|
| | | }
|
| | | // sort the jars by name and then reverse the order so the newer version
|
| | | // of the library gets loaded in the event that this is an upgrade
|
| | | Collections.sort(jars);
|
| | | Collections.reverse(jars);
|
| | |
|
| | | if (jars.size() == 0) {
|
| | | for (String folder : folders) {
|
| | |
| | | "3b7c5f3938f202311bdca0bf7ed46bc0118af081");
|
| | |
|
| | | public static final MavenObject JGIT = new MavenObject("JGit", "org/eclipse/jgit",
|
| | | "org.eclipse.jgit", "1.0.0.201106090707-r", 1318000, 1354000, 2993000,
|
| | | "34e70691382d67ee5c84ef207fb8d3784594ba2c",
|
| | | "78dbd385cf40cb266f4fb2de8651b288a72f4e2d",
|
| | | "dab55685bb6eee8d07cc87faf0cedaa3f9d04a0d");
|
| | | "org.eclipse.jgit", "1.1.0.201109151100-r", 1318000, 1354000, 3300000,
|
| | | "bacc988346c839f79513d7bc7f5c88b22ea6e7a5",
|
| | | "90abf988d98ce0d4b162f94f63fc99c435eba6b4",
|
| | | "a46540a2857a0fdbf43debf3383295a897946c79");
|
| | |
|
| | | public static final MavenObject JGIT_HTTP = new MavenObject("JGit", "org/eclipse/jgit",
|
| | | "org.eclipse.jgit.http.server", "1.0.0.201106090707-r", 68000, 62000, 99000,
|
| | | "35e22f7000af95d0c90caaf2012071ef3734ff59",
|
| | | "4a2368beb1e9db4a6a0d609b7b869f218bf8e7a9",
|
| | | "3100ce7c40d6968481a12377c59c708cda2d17b5");
|
| | | "org.eclipse.jgit.http.server", "1.1.0.201109151100-r", 68000, 62000, 110000,
|
| | | "3070161a89756aac2dfc2e26d89faf31fe894ab4",
|
| | | "9cecb8e4351e616688cafbcca906f542d9b1f525",
|
| | | "20aaab759acd8eb6cb6acbb1b2934a689fb3774d");
|
| | |
|
| | | public static final MavenObject JSCH = new MavenObject("JSch", "com/jcraft", "jsch",
|
| | | "0.1.44-1", 214000, 211000, 413000, "2e9ae08de5a71bd0e0d3ba2558598181bfa71d4e",
|