I am using dl4j examples in my system. It's a maven project with various modules. There are several pom files in it. In the parent pom file I noticed I got an error stating:
Cannot resolve symbol 'session.executionRootDirectory'
.
I don't remember changing this line (or this pom file either). The line producing the problem is this one:
<configFile>${session.executionRootDirectory}/contrib/formatter.xml</configFile>
in file parent pom file line 90.
My question is since ${session.executionRootDirectory}
seems as a variable which my system fails to identify is it something of an environment variable I should set? Should this be set by another way?
Any idea of what ${session.executionRootDirectory}
is and how to set it welcome.
My system is win7 and I am using Intellij Idea.
The problem seem to be solved by replacing the variable with an actual value of the path to the file it points to (that is formatter.xml) but I would like to know why the solution with the variable does not work.