Why build Labkey but the ./build/deploy/modules is empty?

LabKey Support Forum (Inactive)
Why build Labkey but the ./build/deploy/modules is empty? Jon (LabKey DevOps)  2016-12-15 22:50
Status: Closed
 
Hello,

Did you read the error and check the module.xml file? It clearly states:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 31 in XML document from URL [file:/C:/LabKey16.1-42836.12-src/build/deploy/modules/adjudication/config/module.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 43; Invalid byte 1 of 1-byte UTF-8 sequence.

I couldn't open that module.xml file directly and had to use a vim editor to view it and found this on line 31:

         <property name="buildTime" value="Ê®¶þÔÂ 7 2016, 2:52 ÏÂÎç"/>

That isn't a valid build time value, not when the header of the module.xml file is set to use UTF-8:

         <?xml version="1.0" encoding="UTF-8"?>

That buildTime should look more like this:

        <property name="buildTime" value="December 8 2016, 1:33 PM"/>

Can you make changes to it so the date field looks normal and readable?

Regards,

Jon