Hi again,

maybe I should specify what exactly I want to do.

I'm developing a project in a team. We're using the eclipse IDE.
I would like to configure maven the way that it builds the eclipse project, downloads the drools library and adds the drools library to the projects build path.

I know how to download and add simple JARs to a project, but I don't know how to do it for drools.

Additionally I need to set up maven profiles for compiling and running the project independent from eclipse.

Thank you!
Tina
Hi,

I would like to install drools for one of my projects using maven. (I've already ask the maven mailinglist. They said I shall ask here, because it's Drools related.) I've set up the repository and the drools reference in my projects POM file.

    <repository>
    <id>Jboss Drools Nexus Repository</id>
    <url>https://repository.jboss.org/nexus/content/groups/public</url>
    <releases>
    <enabled>true</enabled>
    </releases>
    <snapshots>
    <enabled>false</enabled>
    </snapshots>
    </repository>

    <dependency>
    <groupId>org.drools</groupId>
    <artifactId>drools</artifactId>
    <version>5.1.0</version>
    <type>pom</type>
    </dependency>


I know the referenced repository directory contains no jar file, because I need the whole drools project. I thought the POM contained in the repository dir would manage that. Because I'm new to Maven, I don't know if I've configured something wrong or what's the trick. Running my project I get:

    Validation Messages:
        [0]  'dependencies.dependency.version' is missing for
    org.drools:drools:jar

So how can I set drools as a project dependency?

Thank you for your help!
Tina


_______________________________________________
rules-users mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/rules-users

_______________________________________________
rules-users mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/rules-users

Reply via email to