# # Copyright 2004 The Apache Software Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Contains properties specific to jar-modules. Many properties in hivebuild.properties # should move here. # The following several properties define arguments passed to the javac task when compiling # target code. module.javac.debug=on module.javac.debuglevel=lines,vars,source module.javac.optimize=off module.javac.deprecation=on module.javac.target=1.1 module.javac.verbose=off module.javac.source=1.3 module.javac.listfiles=off # Each of the above has a corresponding javac-test that defaults to the same value. module.javac-test.debug=${module.javac.test} module.javac-test.debug=${module.javac.debug} module.javac-test.debuglevel=${module.javac.debuglevel} module.javac-test.optimize=${module.javac.optimize} module.javac-test.deprecation=${module.javac.deprecation} module.javac-test.target=${module.javac.target} module.javac-test.verbose=${module.javac.verbose} module.javac-test.source=${module.javac.source} module.javac-test.listfiles=${module.javac.listfiles} # Directorty into which the module's jar should be installed. module.install.dir=${project.target.dir} # Defaults for running unit tests. module.junit.version=3.8.1 module.junit.fork=on module.junit.forkmode=once # Used to specify the maximum heap size. module.junit.jvmarg=-Xmx384m module.junit.includeantruntime=on module.junit.jar=junit-${module.junit.version}.jar # Override this to compile if java sources uses JUnit classes. module.junit.use=test