]
Avindu Hendawitharana commented on DROOLS-504:
----------------------------------------------
This problem is already fixed in drools 6.4.0 finals
Example project Maven configuration incomplete: plugin repository not
configured
--------------------------------------------------------------------------------
Key: DROOLS-504
URL:
https://issues.jboss.org/browse/DROOLS-504
Project: Drools
Issue Type: Bug
Affects Versions: 6.0.1.Final
Reporter: Peter Horvath
Assignee: Mark Proctor
Drools Example project uses JBoss dependencies both for libraries and Maven plugins. The
JBoss repository is configured within the pom.xml _so the examples sources in the
distribution zip build out-of-the-box with maven_. The same has not been done for the
*pluginRepository*, as a result, Maven build fails as it cannot download JBoss plugins.
Please add the necessary configuration to the example projects so that it really can be
built out-of-the-box.
{code:xml}
<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<
url>http://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
{code}