Ciao
Chris
I want to build gerrit with my special version of gwtorm. I have build a modified version of gwtorm with 'mvn clean install'. Now I want to configure the Buck build of gerrit to use this Version of gwtorm. My version of gwtorm should be included in gerrit.war. How would i do that?
--
--
To unsubscribe, email repo-discuss...@googlegroups.com
More info at http://groups.google.com/group/repo-discuss?hl=en
---
You received this message because you are subscribed to the Google Groups "Repo and Gerrit Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to repo-discuss...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
maven_jar(
name = 'gwtorm',
id = 'gwtorm:gwtorm:1.7',
bin_sha1 = 'ee3b316a023f1422dd4b6654a3d51d0e5690809c',
src_sha1 = 'a145bde4cc87a4ff4cec283880e2a03be32cc868',
license = 'Apache2.0',
repository = GERRIT,
)
Set bin_sha1 and src_sha1 to None and repository to MAVEN_LOCAL. The
MAVEN_LOCAL definition is recent as of e585fc0449 (Aug 14 15:40
-0700).
Great! This worked. Thanks a lot.