Ignore:
Timestamp:
Mar 20, 2012, 2:40:52 PM (12 years ago)
Author:
fmguler
Message:

Refs #7 - Implemented orderAsc and orderDesc methods of Criteria. Have been testing these for a while, no problem so far. Added BigDecimal to db classes (Numeric db type). If the column name is "order" it is escaped while insert/update. (This should be done for all db keywords). Fixed missing mapping of one to many assc. (lists) of many to one (object) assc (obj.obj.list).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/fmgVen/nbproject/build-impl.xml

    r32 r37  
    2121        --> 
    2222<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="fmgVen-impl"> 
    23     <fail message="Please build using Ant 1.7.1 or higher."> 
     23    <fail message="Please build using Ant 1.8.0 or higher."> 
    2424        <condition> 
    2525            <not> 
    26                 <antversion atleast="1.7.1"/> 
     26                <antversion atleast="1.8.0"/> 
    2727            </not> 
    2828        </condition> 
     
    252252        <property name="jar.index" value="false"/> 
    253253        <property name="jar.index.metainf" value="${jar.index}"/> 
     254        <property name="copylibs.rebase" value="true"/> 
    254255        <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/> 
    255256    </target> 
     
    438439                <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/> 
    439440                <java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}"> 
     441                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/> 
    440442                    <jvmarg value="${profiler.info.jvmargs.agent}"/> 
    441443                    <jvmarg line="${profiler.info.jvmargs}"/> 
     
    573575                </pathconvert> 
    574576                <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/> 
    575                 <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> 
     577                <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}"> 
    576578                    <fileset dir="${build.classes.dir}"/> 
    577579                    <manifest> 
     
    898900    <target depends="init" if="have.sources" name="-javadoc-build"> 
    899901        <mkdir dir="${dist.javadoc.dir}"/> 
     902        <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}"> 
     903            <and> 
     904                <isset property="endorsed.classpath.cmd.line.arg"/> 
     905                <not> 
     906                    <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/> 
     907                </not> 
     908            </and> 
     909        </condition> 
    900910        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" executable="${platform.javadoc}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> 
    901911            <classpath> 
     
    909919                <exclude name="*.java"/> 
    910920            </fileset> 
     921            <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/> 
    911922        </javadoc> 
    912923        <copy todir="${dist.javadoc.dir}"> 
Note: See TracChangeset for help on using the changeset viewer.