This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a2e17efff73313974134cf5449085dfd89fc593d
tree ab27af3dc083c27794ef2c28cf31489fee892dc3
parent 7f7b62760bc79afdb00bddebe45305aa22b16bcd
tree ab27af3dc083c27794ef2c28cf31489fee892dc3
parent 7f7b62760bc79afdb00bddebe45305aa22b16bcd
| name | age | message | |
|---|---|---|---|
| |
README.txt | Sat Apr 25 18:28:17 -0700 2009 | |
| |
ant/ | Sat Jul 04 10:56:22 -0700 2009 | |
| |
build.xml | Mon Apr 27 00:11:26 -0700 2009 | |
| |
ivy/ | Thu May 07 16:14:40 -0700 2009 | |
| |
mkproject.sh | Mon Apr 27 00:11:52 -0700 2009 |
README.txt
Folder layout:
ant/ -- boilerplate ant files
src/ -- source code
main/
scala/
java/
jni/
thrift/
resources/ -- files to copy into dist
test/
scala/
resources/ -- files needed only for tests
scripts/
ivy/
ivy.xml -- package description
ivysettings.xml -- repositories
config/ -- items to package in the distribution but not in jars
To configure, search through build.xml and ivy/ivy.xml for the
string CONFIG and modify accordingly. The Ivy settings are also
documented below.
Created during the build:
target/ -- compiled files
classes/
test-classes/
resources/ -- copied from src/test/resources/
gen-java/ -- generated from thrift
scripts/
dist/
<package>-<version>/
<package>-<version>.jar
*.so -- if jni stuff was compiled
*.jnilib -- if jni stuff was compiled
libs/ -- dependent jars (and any extra)
config/ -- copied over from config/
resources/ -- from src/main/resources/
Primary targets
---------------
- clean
- erase all generated/built files
- distclean
- clean *everything*
- prepare
- resolve dependencies and download them
- compile
- build any java/scala source
- test
- build and run test suite (requires e:testclass)
- stress
- (optional) run stress test suite (requires e:stresstestclass)
- docs
- generate documentation
- package
- copy all generated/built files into distribution folder
(requires "local" repo)
- push
- copy all generated/built files into a final repository
(requires "push" repo)
Properties that can change behavior
-----------------------------------
- skip.download
if defined, don't download ivy; assume it's present
- skip.test
if defined, don't run test suite
- skip.docs
if defined, don't build docs
- libs.extra
any extra files to copy into dist/<p>/libs/ during compile
- dist.extra
any extra files to copy into dist/<p> during compile
- config.extra
any extra files to copy into config/ during compile
- pack.deps
if defined, pack dependent jars into the final dist jar, to remove dependencies
- thrift.bin
location of the "thrift" executable
- push.build_name
if defined, add the build name (and git revision) to jars when pushed to the repo
- dist.build_name
if defined, add the git revision to the name of the final distribution zip file
- no.git
if defined, don't try to fetch the current git head revision
Extra ivy thingies
------------------
- e:buildpackage
causes a build.properties file to be created in the named package
(stores version #, etc -- used by RuntimeEnvironment in configgy)
- e:thriftpackage
output package for generated thrift classes; causes thrift DDLs to be
compiled
- e:testclass
class to execute for unit tests -- required, in order to run tests
- e:stresstestclass
class to execute for stress tests (optional)
- e:jarclassname
creates an executable jar with this as the main class name
JNI
---
JNI will be built if there appears to be a `build.xml` file in src/main/jni/.
That ant file should contain a "clean" target and a "compile" target.
Post-compile, the jni/ folder is expected to look like this:
src/
main/
jni/
build.xml -- used to build the jni packages
<package>/
target/
*.so -- copied into dist/<p>/
*.jnilib -- copied into dist/<p>/
*.jar -- copied into dist/<p>/
There may be as many <package> folders in jni/ as you desire.







