From test.drl:

package test

import com.sample.Patient;

rule "test"
when
    $p:Patient($userId: userId)
then
   
    System.out.println("Patient "+ $userId + " " +  $p.getCreateDate() +  "(package test)"    );
end

rule "user"
when
    $p: Patient($userId: userId)
then
   
   System.out.println("User " + $userId + " " + $p.getCreateDate() + " (package test)"    );
end

rule "hello"
when
then
System.out.println("Hello World package test");
end


From test-two.drl:

package test.two
rule "hello one test two"
when
then
System.out.println("Hello World ONE package test two");
end



rule "hello two test two"
when
then
System.out.println("Hello World TWO package test two");
end


From: lhorton <LHorton@ABCLegal.com>
To: rules-users@lists.jboss.org
Sent: Tuesday, September 20, 2011 3:41 PM
Subject: Re: [rules-users] Changeset does not monitor folder correctly

If you will post your drl files, maybe we can see what the problem might be. 

--
View this message in context: http://drools.46999.n3.nabble.com/Changeset-does-not-monitor-folder-correctly-tp3337573p3353222.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
_______________________________________________
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users