I'm trying to mvn compile the project using the pom.xml at the root folder of Lumify and I'm getting the following errors:
[INFO] Compiling 1 source file to /home/user1/lumify/tools/format/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /home/user1/lumify_from_git/lumify/tools/format/src/main/java/io/lumify/tools/format/FormatLumify.java:[56,146] cannot find symbol
symbol: variable CONFIG_INDEX_NAME
location: class org.securegraph.elasticsearch.ElasticSearchSearchIndexBase
[ERROR] /home/user1/lumify_from_git/lumify/tools/format/src/main/java/io/lumify/tools/format/FormatLumify.java:[57,151] cannot find symbol
symbol: variable CONFIG_ES_LOCATIONS
location: class org.securegraph.elasticsearch.ElasticSearchSearchIndexBase
How can I declare those two variables so that they are understood at compilation?
P.S. I know this step might not be required since Docker is being used but I would like to build the war files for the various plugins.
Thank you in advance.