James Moger
2013-08-22 8eaf843d60983d433435ac2a89e1a63b8de02338
commit | author | age
f6b200 1 #
JM 2 # Gitblit project descriptor
3 #
4
5 # Specify minimum Moxie version required to build
32ada7 6 requires: 0.7.4
f6b200 7
JM 8 # Project Metadata
9 name: Gitblit
10 description: pure Java Git solution
11 groupId: com.gitblit
12 artifactId: gitblit
8eaf84 13 version: 1.3.2
f6b200 14 inceptionYear: 2011
JM 15
16 # Current stable release
8eaf84 17 releaseVersion: 1.3.2
JM 18 releaseDate: 2013-08-22
f6b200 19
JM 20 # Project urls
21 url: 'http://gitblit.com'
22 issuesUrl: 'http://code.google.com/p/gitblit/issues/list'
23 socialNetworkUrl: 'https://plus.google.com/114464678392593421684'
24 forumUrl: 'http://groups.google.com/group/gitblit'
f12685 25 mavenUrl: 'http://gitblit.github.io/gitblit-maven'
f6b200 26
JM 27 # Licenses section included for POM generation
28 licenses:
29 - {
30     name: Apache ASL v2.0
31     url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
32   }
33
34 # Developers section included for POM generation
35 developers:
36 - {
37   id: james
38   name: James Moger
39   url: 'https://plus.google.com/u/0/116428776452027956920'
40   organization: VAS
41   organizationUrl: 'http://www.vas.com'
42   roles: developer
43   }
44
45 # SCM section included for POM generation
46 scm: {
47   connection: 'scm:git:git://github.com/gitblit/gitblit.git'
48   developerConnection: 'scm:git:https://github.com/gitblit/gitblit.git'
49   url: 'https://github.com/gitblit/gitblit'
50   tag: HEAD
51   }
52
53 # Mainclass is used for setting jar manifests and using the mx:run target
54 mainclass: com.gitblit.GitBlitServer
55
56 # Moxie supports multiple source directories and allows you to assign
57 # a scope to each directory.
58 sourceDirectories:
59 - compile 'src/main/java'
60 - test 'src/test/java'
61 # Moxie supports one site-scoped directory for mx:doc
62 - site 'src/site'
63
64 resourceDirectories:
65 - compile 'src/main/resources'
66 - site 'src/site/resources'
67
68 # compile for Java 6 class format
69 tasks: {
70     'mx:javac' : {
71         source: 1.6
72         target: 1.6
73         compiler: javac1.6
74         encoding: UTF-8
75         # stop complaints about bootstrap classpath when compiling with Java 7
76         compilerArgs: '-Xlint:-options'
77     }
78 }
79
80 # Generate Eclipse project files.
81 # Generate IntelliJ IDEA module files.
82 # Generate a distribution Maven POM (not suitable for building with Maven).
83 apply: eclipse, intellij, pom
84
85 # Copy all retrieved dependencies to the "ext" directory.
86 # Generated IDE settings (.classpath, etc) will use the artifacts
87 # from this project-relative directory. This allows the IDE settings
88 # to be version-controlled and shared.
89 dependencyDirectory: ext
90
91 # Register the Eclipse JGit Maven repositories
92 registeredRepositories:
93 - { id: jgit, url: 'http://download.eclipse.org/jgit/maven' }
94 - { id: jgit-snapshots, url: 'https://repo.eclipse.org/content/groups/snapshots' }
95
96 # Source all dependencies from the following repositories in the specified order
97 repositories: central, jgit-snapshots, jgit
98
99 # Convenience properties for dependencies
100 properties: {
101   jetty.version  : 7.6.8.v20121106
102   wicket.version : 1.4.21
103   lucene.version : 3.6.1
9cce80 104   jgit.version   : 3.0.0.201306101825-r
f6b200 105   groovy.version : 1.8.8
JM 106   bouncycastle.version : 1.47
107   selenium.version : 2.28.0
108   }
109
110 # Dependencies
111 #
112 #   May be tagged with ":label" notation to group dependencies.
113 #
114 #   "@extension" fetches the artifact with the specified extension
115 #   and ignores all transitive dependencies.
116 #
117 #   "!groupId" or "!groupId:artifactId" excludes all matching transitive
118 #   dependencies in that dependency's dependency graph.
119 #
120
121 dependencies:
122 # Standard dependencies
123 - compile 'com.beust:jcommander:1.17' :fedclient :authority
124 - compile 'log4j:log4j:1.2.17' :war :fedclient :authority
e5c14e 125 - compile 'org.slf4j:slf4j-api:1.6.6' :war :fedclient :authority
f6b200 126 - compile 'org.slf4j:slf4j-log4j12:1.6.6' :war :fedclient :authority
JM 127 - compile 'javax.mail:mail:1.4.3' :war :fedclient :authority
128 - compile 'javax.servlet:javax.servlet-api:3.0.1' :fedclient
129 - compile 'org.eclipse.jetty.aggregate:jetty-webapp:${jetty.version}' @jar
130 - compile 'org.eclipse.jetty:jetty-ajp:${jetty.version}' @jar
131 - compile 'org.apache.wicket:wicket:${wicket.version}' :war !org.mockito
132 - compile 'org.apache.wicket:wicket-auth-roles:${wicket.version}' :war !org.mockito
133 - compile 'org.apache.wicket:wicket-extensions:${wicket.version}' :war !org.mockito
134 - compile 'org.wicketstuff:googlecharts:${wicket.version}' :war
135 - compile 'org.apache.lucene:lucene-core:${lucene.version}' :war :fedclient
136 - compile 'org.apache.lucene:lucene-highlighter:${lucene.version}' :war :fedclient
137 - compile 'org.apache.lucene:lucene-memory:${lucene.version}' :war :fedclient
138 - compile 'org.tautua.markdownpapers:markdownpapers-core:1.3.2' :war
139 - compile 'org.eclipse.jgit:org.eclipse.jgit:${jgit.version}' :war :fedclient :manager :authority
140 - compile 'org.eclipse.jgit:org.eclipse.jgit.http.server:${jgit.version}' :war :fedclient :manager :authority
141 - compile 'org.bouncycastle:bcprov-jdk15on:${bouncycastle.version}' :war :authority
142 - compile 'org.bouncycastle:bcmail-jdk15on:${bouncycastle.version}' :war :authority
143 - compile 'org.bouncycastle:bcpkix-jdk15on:${bouncycastle.version}' :war :authority
144 - compile 'rome:rome:0.9' :war :manager :api
145 - compile 'com.google.code.gson:gson:1.7.2' :war :fedclient :manager :api
146 - compile 'org.codehaus.groovy:groovy-all:${groovy.version}' :war
147 - compile 'com.unboundid:unboundid-ldapsdk:2.3.0' :war
148 - compile 'org.apache.ivy:ivy:2.2.0' :war
149 - compile 'com.toedter:jcalendar:1.3.2' :authority
150 - compile 'org.apache.commons:commons-compress:1.4.1' :war
e8b8ee 151 - compile 'com.force.api:force-partner-api:24.0.0' :war
430496 152 - compile 'org.freemarker:freemarker:2.3.19' :war
73c76b 153 - compile 'com.github.dblock.waffle:waffle-jna:1.5' :war
2659e7 154 - compile 'org.kohsuke:libpam4j:1.7' :war
a0c34e 155 - compile 'commons-codec:commons-codec:1.7' :war
f6b200 156 - test 'junit'
JM 157 # Dependencies for Selenium web page testing
158 - test 'org.seleniumhq.selenium:selenium-java:${selenium.version}' @jar
159 - test 'org.seleniumhq.selenium:selenium-support:${selenium.version}' @jar
160 - test 'org.seleniumhq.selenium:selenium-firefox-driver:${selenium.version}'
161 # Dependencies with the "build" scope are retrieved
162 # and injected into the Ant runtime classpath
163 - build 'jacoco'