James Moger
2012-02-03 fe7c01a8bd76dff240e74bb770212911e227ba59
commit | author | age
85c2e6 1 ## Design Principles
JM 2 1. [Keep It Simple, Stupid](http://en.wikipedia.org/wiki/KISS_principle)
3 2. Offer useful features for serving Git repositories.  If feature is complex, refer to #1.
6f46fa 4 3. All dependencies must be retrievable from a publicly accessible [Maven](http://maven.apache.org) repository.<br/>This is to ensure authenticity of dependencies and to automate the setup of developer environments.  
85c2e6 5
JM 6 ## Architecture
7
8 ![block diagram](architecture.png "Gitblit Architecture")
9
10 ### Bundled Dependencies
11 The following dependencies are bundled with Gitblit.
12
8c5d72 13 - [Bootstrap](http://twitter.github.com/bootstrap) (Apache 2.0)
3b6904 14 - [Clippy](https://github.com/mojombo/clippy) (MIT)
85c2e6 15 - [google-code-prettify](http://code.google.com/p/google-code-prettify) (Apache 2.0)
d39680 16 - [Commons Daemon](http://commons.apache.org/daemon) (Apache 2.0)
85c2e6 17 - magnifying glass search icon courtesy of [Gnome](http://gnome.org) (Creative Commons CC-BY)
JM 18 - modified Git logo originally designed by [Henrik Nyh](http://henrik.nyh.se/2007/06/alternative-git-logo-and-favicon)
19 - other icons courtesy of [FatCow Hosting](http://www.fatcow.com/free-icons) (Creative Commons CC-BY)
20
21 ### Downloaded Dependencies
22 The following dependencies are automatically downloaded by Gitblit GO (or already bundled with the WAR) from the Apache Maven repository and from the Eclipse Maven repository when Gitblit is launched for the first time.
23
24 - [JGit][jgit] (EDL 1.0)
25 - [Wicket](http://wicket.apache.org) (Apache 2.0)
26 - [WicketStuff GoogleCharts](https://github.com/wicketstuff/core/wiki/GoogleCharts) (Apache 2.0)
27 - [MarkdownPapers](http://markdown.tautua.org) (Apache 2.0)
28 - [Jetty](http://eclipse.org/jetty) (Apache 2.0, EPL 1.0)
29 - [SLF4J](http://www.slf4j.org) (MIT/X11)
30 - [Log4j](http://logging.apache.org/log4j) (Apache 2.0) 
31 - [JCommander](http://jcommander.org) (Apache 2.0)
32 - [BouncyCastle](http://www.bouncycastle.org) (MIT/X11)
33 - [JSch - Java Secure Channel](http://www.jcraft.com/jsch) (BSD)
34 - [Rome](http://rome.dev.java.net) (Apache 1.1)
35 - [jdom](http://www.jdom.org) (Apache-style JDOM license)
831469 36 - [google-gson](http://code.google.com/google-gson) (Apache 2.0)
JM 37 - [javamail](http://kenai.com/projects/javamail) (CDDL-1.0, BSD, GPL-2.0, GNU-Classpath)
fa54be 38 - [Groovy](http://groovy.codehaus.org) (Apache 2.0)
85c2e6 39
JM 40 ### Other Build Dependencies
41 - [Fancybox image viewer](http://fancybox.net) (MIT and GPL dual-licensed)
42 - [JUnit](http://junit.org) (Common Public License)
43 - [commons-net](http://commons.apache.org/net) (Apache 2.0)
44 - [ant-googlecode](http://code.google.com/p/ant-googlecode) (New BSD)
f6740d 45 - [GenJar](http://genjar.sourceforge.net) (Apache 1.1)
85c2e6 46
JM 47 ## Building from Source
48 [Eclipse](http://eclipse.org) is recommended for development as the project settings are preconfigured.
49
50 Additionally, [Google CodePro AnalytiX](http://code.google.com/javadevtools), [eclipse-cs](http://eclipse-cs.sourceforge.net), [FindBugs](http://findbugs.sourceforge.net), and [EclEmma](http://www.eclemma.org) are recommended development tools.
51
52 1. Clone the git repository from [Github][gitbltsrc].
3b5289 53 2. Import the gitblit project into your Eclipse workspace.  
85c2e6 54 *There will be lots of build errors.*
3b5289 55 3. Using Ant, execute the `build.xml` script in the project root.  
85c2e6 56 *This will download all necessary build dependencies and will also generate the Keys class for accessing settings.*
JM 57 4. Select your gitblit project root and **Refresh** the project, this should correct all build problems.
3b5289 58 5. Using JUnit, execute the `com.gitblit.tests.GitBlitSuite` test suite.  
85c2e6 59 *This will clone some repositories from the web and run through the unit tests.*
JM 60 5. Review the settings in `gitblit.properties` in your project root.
3b5289 61     - By default, the *git.repositoriesFolder* points to the repositories cloned by the test suite.  
85c2e6 62     - If running on Linux you may have to change the served port(s) to > 1024 unless you are developing as the root user. 
JM 63 6. Execute the *com.gitblit.Launcher* class to start Gitblit.
64
65
66 ## Contributing
67 Patches welcome in any form.
68
69 Contributions must be your own original work and must licensed under the [Apache License, Version 2.0][apachelicense], the same license used by Gitblit.
70
71 [jgit]: http://eclipse.org/jgit "Eclipse JGit Site"
72 [git]: http://git-scm.com "Official Git Site"
73 [gitbltsrc]: http://github.com/gitblit "gitblit git repository"
74 [googlecode]: http://code.google.com/p/gitblit "gitblit project management"
75 [apachelicense]: http://www.apache.org/licenses/LICENSE-2.0 "Apache License, Version 2.0"