I am trying to adapt drools6.0 for an existing code base (it is maven project under eclipse). I didnt had need to learn drools or maven before (though they were part of my p
Little late on the answer here, but this might help others.
Check your META-INF/Maven/pom.properties file, and it might contain this:
groupId=
artifactId=
version=
Nothing was defined! Changed it to:
groupId=com.sample (package name)
artifactId=DroolsTest (class name)
version=0.0.1-SNAPSHOT
Copy and paste the same data from pom.properties file to pom.xml . Runs fine now.