Michael Neale | 1 Mar 2007 14:01
Picon
Gravatar

[rules-dev] update on BRMS

http://markproctor.blogspot.com/2007/02/brms-introduction-and-progress-update.html

FYI

Michael.
_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Tom Gonzalez | 1 Mar 2007 23:29
Favicon

[rules-dev] Drools 3.1.0-M1 dsl compatibility problems with 3.0.4

We are in the process of converting from 3.0.4 to 3.1.0-M1 and having problems building rules with a dsl that built in 3.0.4 with no problems.

We are getting rule compilation errors reporting:

        String literal is not properly closed by a double-quote

The problem was isolated to the following, a dsl mapping that works in 3.0.4

        [then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}\n" );

We had to change it to the following to get past the compile error.

        [then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}");


Tried to get the lf in various ways but no luck. Only way would be to modify every message and add a LF

[then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}" + "\n");  -- no good got same error.

This was not easy to find either. The error message above was not of much use.

Regards,


Tom G



_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Michael Neale | 1 Mar 2007 23:38
Picon
Gravatar

Re: [rules-dev] Drools 3.1.0-M1 dsl compatibility problems with 3.0.4

Tom - there was some MAJOR re-work for 3.1m1 - could you put this in a JIRA - that example, perhaps with the test code, but at least the example.
Its probably some regex-foo stuffing up and choking on the \n, no doubt.  That would be great.

On 3/2/07, Tom Gonzalez <tomgon <at> nortel.com> wrote:

We are in the process of converting from 3.0.4 to 3.1.0-M1 and having problems building rules with a dsl that built in 3.0.4 with no problems.

We are getting rule compilation errors reporting:

        String literal is not properly closed by a double-quote

The problem was isolated to the following, a dsl mapping that works in 3.0.4

        [then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}\n" );

We had to change it to the following to get past the compile error.

        [then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}");


Tried to get the lf in various ways but no luck. Only way would be to modify every message and add a LF

[then]Log : {level} , {message}=logUtil.log ( {level}  , "{message}" + "\n");  -- no good got same error.

This was not easy to find either. The error message above was not of much use.

Regards,


Tom G




_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev


_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Tom Gonzalez | 1 Mar 2007 23:51
Favicon

[rules-dev] Drools 3.1.0-M1 rules build 3.0.4 compatibility problems with eval statements

We are in the process of converting from 3.0.4 to 3.1.0-M1 and having problems building rules that have eval statements in them that build in 3.0.4 with no problems.

We are getting rules build errors as follows:

     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackager build
     [java] INFO: ============== Start build RulePackage: [engrules.mss] =========
     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
     [java] INFO:       adding Rules from: MG15000Rules.drl (with associated DSL)
     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
     [java] INFO:       parsed rules using dsl
     [java] org.drools.RuntimeDroolsException: unable to find the function ','
     [java]     at org.drools.semantics.java.StaticMethodFunctionResolver.resolveFunction(StaticMethodFunctionResolver.java:9)

     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:132)
     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:103)
     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:66)
     [java]     at org.drools.semantics.java.builder.EvalBuilder.build(EvalBuilder.java:78)
     [java]     at org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
     [java]     at org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
     [java]     at org.drools.semantics.java.RuleBuilder.build(RuleBuilder.java:178)
     [java]     at org.drools.compiler.PackageBuilder.addRule(PackageBuilder.java:381)
     [java]     at org.drools.compiler.PackageBuilder.addPackage(PackageBuilder.java:219)
     [java]     at com.nortel.connect.rbuilder.RulePackage.addRulesFromDrlFile(RulePackage.java:229)
     [java]     at com.nortel.connect.rbuilder.RulePackager.build(RulePackager.java:206)
     [java]     at com.nortel.connect.rbuilder.RulePackager.buildAll(RulePackager.java:142)
     [java]     at com.nortel.connect.rbuilder.RulePackager.main(RulePackager.java:92)
     [java] Feb 28, 2007 5:55:30 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile

We have a number of rules with eval's in them such as:

eval( !(checkVspToInstanceRatio( (Integer)$vsp3ocount, (Integer)$vsp4ecount, (Integer)$vsp3count, (Integer)$nstacount)) );

eval ( !(strInStr((String)$shelfsn,(String)$netwksn))

eval( !(checkDlepNumber( (Integer)$dlepkey, (Integer)$nstakey)) || !(isEvenInteger((Integer)$nstakey))

The parser has issue with the cast syntax in the eval removing the cast (like (Integer) ) cleans up the paser issue however this is not a feasible solution. Casting is required in some cases with out adding a good bit of extra work.

Can you restore the support we previously had for casting with in an eval and retain the flexibility of using casts when needed?

Thanks,


Regards,

Tom G






_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Michael Neale | 1 Mar 2007 23:57
Picon
Gravatar

Re: [rules-dev] Drools 3.1.0-M1 rules build 3.0.4 compatibility problems with eval statements

Hi Tom - its great you are trying this out - once again - coudl you attach enough to repoduce this to a JIRA? It will get added to the integration tests.

There is no fundamental reason why you can't cast like that at all, its certainly not a design constraint, just - SHOCK - a bug ! Say it isn't so !

On 3/2/07, Tom Gonzalez <tomgon <at> nortel.com> wrote:

We are in the process of converting from 3.0.4 to 3.1.0-M1 and having problems building rules that have eval statements in them that buil d in 3.0.4 with no problems.

We are getting rules build errors as follows:

     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackager build
     [java] INFO: ============== Start build RulePackage: [engrules.mss] =========
     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
     [java] INFO:       adding Rules from: MG15000Rules.drl (with associated DSL)
     [java] Feb 28, 2007 5:55:29 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
     [java] INFO:       parsed rules using dsl
     [java] org.drools.RuntimeDroolsException: unable to find the function ','
     [java]     at org.drools.semantics.java.StaticMethodFunctionResolver.resolveFunction(StaticMethodFunctionResolver.java:9)

     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:132)
     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:103)
     [java]     at org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:66)
     [java]     at org.drools.semantics.java.builder.EvalBuilder.build(EvalBuilder.java:78)
     [java]     at org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
     [java]     at org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
     [java]     at org.drools.semantics.java.RuleBuilder.build(RuleBuilder.java:178)
     [java]     at org.drools.compiler.PackageBuilder.addRule(PackageBuilder.java:381)
     [java]     at org.drools.compiler.PackageBuilder.addPackage(PackageBuilder.java:219)
     [java]     at com.nortel.connect.rbuilder.RulePackage.addRulesFromDrlFile(RulePackage.java:229)
     [java]     at com.nortel.connect.rbuilder.RulePackager.build(RulePackager.java:206)
     [java]     at com.nortel.connect.rbuilder.RulePackager.buildAll(RulePackager.java:142)
     [java]     at com.nortel.connect.rbuilder.RulePackager.main(RulePackager.java:92)
     [java] Feb 28, 2007 5:55:30 PM com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile

We have a number of rules with eval's in them such as:

eval( !(checkVspToInstanceRatio( (Integer)$vsp3ocount, (Integer)$vsp4ecount, (Integer)$vsp3count, (Integer)$nstacount)) );

eval ( !(strInStr((String)$shelfsn,(String)$netwksn))

eval( !(checkDlepNumber( (Integer)$dlepkey, (Integer)$nstakey)) || !(isEvenInteger((Integer)$nstakey))

The parser has issue with the cast syntax in the eval removing the cast (like (Integer) ) cleans up the paser issue however this is not a feasible solution. Casting is required in some cases with out adding a good bit of extra work.

Can you restore the support we previously had for casting with in an eval and retain the flexibility of using casts when needed?

Thanks,


Regards,

Tom G







_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev


_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Edson Tirelli | 2 Mar 2007 00:16
Favicon

Re: [rules-dev] Drools 3.1.0-M1 rules build 3.0.4 compatibility problems with eval statements


   Tom,

   Can you confirm the type of your bound variables? 3.1 does not 
autobox primitive types anymore to make for a cleaner and more 
performant code...

   []s
   Edson

Michael Neale wrote:

> Hi Tom - its great you are trying this out - once again - coudl you 
> attach enough to repoduce this to a JIRA? It will get added to the 
> integration tests.
>
> There is no fundamental reason why you can't cast like that at all, 
> its certainly not a design constraint, just - SHOCK - a bug ! Say it 
> isn't so !
>
> On 3/2/07, *Tom Gonzalez* <tomgon <at> nortel.com 
> <mailto:tomgon <at> nortel.com>> wrote:
>
>     We are in the process of converting from 3.0.4 to 3.1.0-M1 and
>     having problems building rules that have eval statements in them
>     that buil d in 3.0.4 with no problems.
>
>     We are getting rules build errors as follows:
>
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackager build
>          [java] INFO: ============== Start build RulePackage:
>     [engrules.mss] =========
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>          [java] INFO:       adding Rules from: MG15000Rules.drl (with
>     associated DSL)
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>          [java] INFO:       parsed rules using dsl
>         * **[java] org.drools.RuntimeDroolsException: unable to find
>     the function ','*
>          [java]     at
>     org.drools.semantics.java.StaticMethodFunctionResolver.resolveFunction(StaticMethodFunctionResolver.java:9)
>
>          [java]     at
>     org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:132)
>          [java]     at
>     org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:103)
>          [java]     at
>     org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:66)
>          [java]     at
>     org.drools.semantics.java.builder.EvalBuilder.build(EvalBuilder.java:78)
>
>          [java]     at
>     org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
>
>          [java]     at
>     org.drools.semantics.java.builder.GroupElementBuilder.build(GroupElementBuilder.java:63)
>
>          [java]     at
>     org.drools.semantics.java.RuleBuilder.build(RuleBuilder.java:178)
>          [java]     at
>     org.drools.compiler.PackageBuilder.addRule(PackageBuilder.java:381)
>          [java]     at
>     org.drools.compiler.PackageBuilder.addPackage(PackageBuilder.java:219)
>
>          [java]     at
>     com.nortel.connect.rbuilder.RulePackage.addRulesFromDrlFile(RulePackage.java:229)
>
>          [java]     at
>     com.nortel.connect.rbuilder.RulePackager.build(RulePackager.java:206)
>          [java]     at
>     com.nortel.connect.rbuilder.RulePackager.buildAll(RulePackager.java:142)
>
>          [java]     at
>     com.nortel.connect.rbuilder.RulePackager.main(RulePackager.java:92)
>          [java] Feb 28, 2007 5:55:30 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>
>     We have a number of rules with eval's in them such as:
>
>     eval( !(checkVspToInstanceRatio( (Integer)$vsp3ocount,
>     (Integer)$vsp4ecount, (Integer)$vsp3count, (Integer)$nstacount)) );
>
>     eval ( !(strInStr((String)$shelfsn,(String)$netwksn))
>
>     eval( !(checkDlepNumber( (Integer)$dlepkey, (Integer)$nstakey)) ||
>     !(isEvenInteger((Integer)$nstakey))
>
>     The parser has issue with the cast syntax in the eval removing the
>     cast (like (Integer) ) cleans up the paser issue however this is
>     not a feasible solution. Casting is required in some cases with
>     out adding a good bit of extra work.
>
>     Can you restore the support we previously had for casting with in
>     an eval and retain the flexibility of using casts when needed?
>
>     Thanks,
>
>
>     Regards,
>
>     Tom G
>
>
>
>
>
>
>
>     _______________________________________________
>     rules-dev mailing list
>     rules-dev <at> lists.jboss.org <mailto:rules-dev <at> lists.jboss.org>
>     https://lists.jboss.org/mailman/listinfo/rules-dev
>
>
>------------------------------------------------------------------------
>
>_______________________________________________
>rules-dev mailing list
>rules-dev <at> lists.jboss.org
>https://lists.jboss.org/mailman/listinfo/rules-dev
>  
>

--

-- 
 Edson Tirelli
 Software Engineer - JBoss Rules Core Developer
 Office: +55 11 3124-6000
 Mobile: +55 11 9218-4151
 JBoss, a division of Red Hat  <at>  www.jboss.com

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev

Edson Tirelli | 2 Mar 2007 00:19
Favicon

Re: [rules-dev] Drools 3.1.0-M1 dsl compatibility problems with 3.0.4


   Tom, Mic,

   Just to clarify, DSL changes didn't make it for M1. DSL should be ok 
in trunk (M2) but not in M1. So Tom, my suggestion is for you to build 
from trunk to use DSL.
   M2 shall be out in a few days.

   []s
   Edson

Michael Neale wrote:

> Tom - there was some MAJOR re-work for 3.1m1 - could you put this in a 
> JIRA - that example, perhaps with the test code, but at least the example.
> Its probably some regex-foo stuffing up and choking on the \n, no 
> doubt.  That would be great.
>
> On 3/2/07, *Tom Gonzalez* <tomgon <at> nortel.com 
> <mailto:tomgon <at> nortel.com>> wrote:
>
>     We are in the process of converting from 3.0.4 to 3.1.0-M1 and
>     having problems building rules with a dsl that built in 3.0.4 with
>     no problems.
>
>     We are getting rule compilation errors reporting:
>
>             String literal is not properly closed by a double-quote
>
>     The problem was isolated to the following, a dsl mapping that
>     works in 3.0.4
>
>             [then]Log : {level} , {message}=logUtil.log ( {level}  ,*
>     **"{message}\n"* );
>
>     We had to change it to the following to get past the compile error.
>
>             [then]Log : {level} , {message}=logUtil.log ( {level} * ,
>     "{message}");*
>
>
>     Tried to get the lf in various ways but no luck. Only way would be
>     to modify every message and add a LF
>
>     [then]Log : {level} , {message}=logUtil.log ( {level}  ,
>     "{message}" + "\n");  -- no good got same error.
>
>     This was not easy to find either. The error message above was not
>     of much use.
>
>     Regards,
>
>
>     Tom G
>
>
>
>
>     _______________________________________________
>     rules-dev mailing list
>     rules-dev <at> lists.jboss.org <mailto:rules-dev <at> lists.jboss.org>
>     https://lists.jboss.org/mailman/listinfo/rules-dev
>
>
>------------------------------------------------------------------------
>
>_______________________________________________
>rules-dev mailing list
>rules-dev <at> lists.jboss.org
>https://lists.jboss.org/mailman/listinfo/rules-dev
>  
>

--

-- 
 Edson Tirelli
 Software Engineer - JBoss Rules Core Developer
 Office: +55 11 3124-6000
 Mobile: +55 11 9218-4151
 JBoss, a division of Red Hat  <at>  www.jboss.com

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev

Anstis, Michael (M. | 2 Mar 2007 10:34
Picon
Favicon

[rules-dev] M2_REPO \ use of Maven2 repository?

Hi,

OK, I'm determined to make an effort to understand what goes on under the hood of Rules and related sub-projects (BRMS for example) and potentially, one day contribute. So I eagerly added the SVN plug-in to Eclipse and set off getting the latest source from http://anonsvn.labs.jboss.com/labs/jbossrules/trunk/. Could a kindly developer please confirm, deny or advise whether M2_REPO should point to a local copy of http://repository.jboss.com/maven2 (if I want to run and build from Eclipse rather than ANT)?

With kind regards,

Mike

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev
Tom Gonzalez | 2 Mar 2007 15:28
Favicon

RE: [rules-dev] Drools 3.1.0-M1 rules build 3.0.4 compatibility problems with eval statements

These are not primitives.

See from below:
eval( !(checkVspToInstanceRatio( (Integer)$vsp3ocount,
     (Integer)$vsp4ecount, (Integer)$vsp3count, (Integer)$nstacount)) 
 );

     eval ( !(strInStr((String)$shelfsn,(String)$netwksn))

     eval( !(checkDlepNumber( (Integer)$dlepkey, (Integer)$nstakey)) ||
     !(isEvenInteger((Integer)$nstakey))

-----Original Message-----
From: rules-dev-bounces <at> lists.jboss.org
[mailto:rules-dev-bounces <at> lists.jboss.org] On Behalf Of Edson Tirelli
Sent: Thursday, March 01, 2007 6:17 PM
To: Rules Dev List
Subject: Re: [rules-dev] Drools 3.1.0-M1 rules build 3.0.4 compatibility
problems with eval statements

   Tom,

   Can you confirm the type of your bound variables? 3.1 does not
autobox primitive types anymore to make for a cleaner and more
performant code...

   []s
   Edson

Michael Neale wrote:

> Hi Tom - its great you are trying this out - once again - coudl you 
> attach enough to repoduce this to a JIRA? It will get added to the 
> integration tests.
>
> There is no fundamental reason why you can't cast like that at all, 
> its certainly not a design constraint, just - SHOCK - a bug ! Say it 
> isn't so !
>
> On 3/2/07, *Tom Gonzalez* <tomgon <at> nortel.com 
> <mailto:tomgon <at> nortel.com>> wrote:
>
>     We are in the process of converting from 3.0.4 to 3.1.0-M1 and
>     having problems building rules that have eval statements in them
>     that buil d in 3.0.4 with no problems.
>
>     We are getting rules build errors as follows:
>
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackager build
>          [java] INFO: ============== Start build RulePackage:
>     [engrules.mss] =========
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>          [java] INFO:       adding Rules from: MG15000Rules.drl (with
>     associated DSL)
>          [java] Feb 28, 2007 5:55:29 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>          [java] INFO:       parsed rules using dsl
>         * **[java] org.drools.RuntimeDroolsException: unable to find
>     the function ','*
>          [java]     at
>     
> org.drools.semantics.java.StaticMethodFunctionResolver.resolveFunction
> (StaticMethodFunctionResolver.java:9)
>
>          [java]     at
>
org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:132)
>          [java]     at
>
org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:103)
>          [java]     at
>     org.drools.semantics.java.FunctionFixer.fix(FunctionFixer.java:66)
>          [java]     at
>     
> org.drools.semantics.java.builder.EvalBuilder.build(EvalBuilder.java:7
> 8)
>
>          [java]     at
>     
> org.drools.semantics.java.builder.GroupElementBuilder.build(GroupEleme
> ntBuilder.java:63)
>
>          [java]     at
>     
> org.drools.semantics.java.builder.GroupElementBuilder.build(GroupEleme
> ntBuilder.java:63)
>
>          [java]     at
>     org.drools.semantics.java.RuleBuilder.build(RuleBuilder.java:178)
>          [java]     at
>
org.drools.compiler.PackageBuilder.addRule(PackageBuilder.java:381)
>          [java]     at
>     
> org.drools.compiler.PackageBuilder.addPackage(PackageBuilder.java:219)
>
>          [java]     at
>     
> com.nortel.connect.rbuilder.RulePackage.addRulesFromDrlFile(RulePackag
> e.java:229)
>
>          [java]     at
>
com.nortel.connect.rbuilder.RulePackager.build(RulePackager.java:206)
>          [java]     at
>     
> com.nortel.connect.rbuilder.RulePackager.buildAll(RulePackager.java:14
> 2)
>
>          [java]     at
>
com.nortel.connect.rbuilder.RulePackager.main(RulePackager.java:92)
>          [java] Feb 28, 2007 5:55:30 PM
>     com.nortel.connect.rbuilder.RulePackage addRulesFromDrlFile
>
>     We have a number of rules with eval's in them such as:
>
>     eval( !(checkVspToInstanceRatio( (Integer)$vsp3ocount,
>     (Integer)$vsp4ecount, (Integer)$vsp3count, (Integer)$nstacount)) 
> );
>
>     eval ( !(strInStr((String)$shelfsn,(String)$netwksn))
>
>     eval( !(checkDlepNumber( (Integer)$dlepkey, (Integer)$nstakey)) ||
>     !(isEvenInteger((Integer)$nstakey))
>
>     The parser has issue with the cast syntax in the eval removing the
>     cast (like (Integer) ) cleans up the paser issue however this is
>     not a feasible solution. Casting is required in some cases with
>     out adding a good bit of extra work.
>
>     Can you restore the support we previously had for casting with in
>     an eval and retain the flexibility of using casts when needed?
>
>     Thanks,
>
>
>     Regards,
>
>     Tom G
>
>
>
>
>
>
>
>     _______________________________________________
>     rules-dev mailing list
>     rules-dev <at> lists.jboss.org <mailto:rules-dev <at> lists.jboss.org>
>     https://lists.jboss.org/mailman/listinfo/rules-dev
>
>
>-----------------------------------------------------------------------
>-
>
>_______________________________________________
>rules-dev mailing list
>rules-dev <at> lists.jboss.org
>https://lists.jboss.org/mailman/listinfo/rules-dev
>  
>

--
 Edson Tirelli
 Software Engineer - JBoss Rules Core Developer
 Office: +55 11 3124-6000
 Mobile: +55 11 9218-4151
 JBoss, a division of Red Hat  <at>  www.jboss.com

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev

Mark Proctor | 2 Mar 2007 22:28

Re: [rules-dev] M2_REPO \ use of Maven2 repository?

M2_REPO is a standard eclipse variable that points to ~/.m2/repository.

You'll need to build the softwaqre from command line first, so that maven pulls in all the dependencies, then eclipse should be able to find the dependencies.

Mark
Anstis, Michael (M.) wrote:
M2_REPO \ use of Maven2 repository?

Hi,

OK, I'm determined to make an effort to understand what goes on under the hood of Rules and related sub-projects (BRMS for example) and potentially, one day contribute. So I eagerly added the SVN plug-in to Eclipse and set off getting the latest source from http://anonsvn.labs.jboss.com/labs/jbossrules/trunk/. Could a kindly developer please confirm, deny or advise whether M2_REPO should point to a local copy of http://repository.jboss.com/maven2 (if I want to run and build from Eclipse rather than ANT)?

With kind regards,

Mike

_______________________________________________ rules-dev mailing list rules-dev <at> lists.jboss.org https://lists.jboss.org/mailman/listinfo/rules-dev

_______________________________________________
rules-dev mailing list
rules-dev <at> lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-dev

Gmane