a9c992bb44
down (well, all the way to the public API anyway). Revamped index creation while I was in there because that was one of the big string users. Now you just put @Index on the field you want indexed, and if you want a multi-column index you do things with a magical static method just like we do for complex (function) indices. @UniqueConstraint may still go away since it's basically exactly the same thing as @Index(unique=true), so it's kind of pointless to support both.
14 lines
448 B
XML
14 lines
448 B
XML
<?xml version="1.0"?>
|
|
<!-- declares the libraries needed to build depot -->
|
|
<project name="library-dependencies">
|
|
<fileset dir="${libs.dir}" id="depot.libs">
|
|
<include name="ant.jar"/>
|
|
<include name="commons-collections.jar"/>
|
|
<include name="ehcache.jar"/>
|
|
<include name="google-collect.jar"/>
|
|
<include name="junit4.jar"/>
|
|
<include name="samskivert.jar"/>
|
|
<include name="velocity-1.5-dev.jar"/>
|
|
</fileset>
|
|
</project>
|