gradle build support for voldemort
commitdba65ca1c3be86c13e5c898c707a719cf9872437
authorArunachalam Thirupathi <arunachalam.t@gmail.com>
Thu, 24 Apr 2014 15:51:43 +0000 (24 08:51 -0700)
committerArunachalam Thirupathi <arunachalam.t@gmail.com>
Mon, 5 May 2014 17:05:20 +0000 (5 10:05 -0700)
tree42b625dd3552fd0b775e11c1244413734fdb3fc1
parentef79b72293437a3d397b3eda90dca888e72cfe95
gradle build support for voldemort

1) 'gradle jar' will build binaries that are equivalent to 'ant release'
2) only 'ant release' task is ported to gradle. use 'ant junit' to run
    the unit tests.
3) zip and tar will not be built, unless explicitly requested. by the
   command 'gradle zip' or 'gradle tar' or 'gradle zip tar'

These are the fine level details of the gradle jar
1) The class files has same binary content except for the scala class
files, since it is not used in production, I am ignoring scala as it is
not used in production.

2) The following two lines went missing from the MANIFEST.MF in both
contrib.jar and voldemort.jar
Ant-Version: Apache Ant 1.7.1
Created-By: 20.2-b06 (Sun Microsystems Inc.)
3) some test class files has different binary content but binary
equivalence is not important for them as we dont ship them. Test jar has
some new class files most likely from junit ignoring this one as well.

4) src.jar now contains package.html included as well ( not intentional,
but not problem either so ignoring it)

5) tar and zip tasks are not part of the build, but can be requested
explicility. The contents of tar and zip are going to be little different
than previous but serves the purpose so we can live with it.
.gitignore
build.gradle [new file with mode: 0644]
build.xml
gradle.properties [moved from build.properties with 100% similarity]