pom.xml for isa-graphparser contains inalid src and test directories
<sourceDirectory>src/main</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
It should be
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
This is not an issue during build time, but when you import the maven project into IDE it guesses the source and test paths incorrectly.
By the way
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
this is the default, so it can be skipped.
pom.xml for isa-graphparser contains inalid src and test directories
It should be
This is not an issue during build time, but when you import the maven project into IDE it guesses the source and test paths incorrectly.
By the way
this is the default, so it can be skipped.