Startup issues with Labkey 2.3 branch | brittp | 2007-12-03 15:22 |
Status: Closed | ||
Hi Scott, Are you building a module outside of the root labkey enlistment? (This would be the case if you created your module using the create_module script from the root build.xml.) If so, you'll also have a build.xml within your module root. Within this build.xml, you'll need to ensure that your build_module target looks like this: <target name="build_module" depends="init" description="Builds local module only. Deploys local module into LabKey installation."> <ant antfile="${main.build.xml}" target="sub_build_module" inheritall="false"> <property name="moduleDir" value="${basedir}"/> <property name="moduleName" value="${module.name}"/> <!-- NEW PROPERTY: --> <property name="useBeehive" value="true" /> </ant> </target> Note the "NEW PROPERTY" comment above the required line. Thanks, Britt |
||