From ozizka at redhat.com  Mon Nov  3 08:05:40 2014
From: ozizka at redhat.com (Ondrej Zizka)
Date: Mon, 03 Nov 2014 14:05:40 +0100
Subject: [windup-dev] Build Problem
In-Reply-To: <CAHLHu44AMw6EKHWcH18FJunMcbnQ=i632H3Z60+cte-DaLFHkQ@mail.gmail.com>
References: <CAHLHu47bnW6OH2sVdWYpwXO7xD5q5YcP0twkivN23nitvuH11Q@mail.gmail.com>	<CAEp_U4FWiappkKwYMUV9KUq2m8W+xffjU5KmcL-OvLG0Qvj3PA@mail.gmail.com>	<CAEp_U4FMB9nn-7nsZuFLXb0zumjMwjde=XfY3o0kdowEjP3N9g@mail.gmail.com>
	<CAHLHu44AMw6EKHWcH18FJunMcbnQ=i632H3Z60+cte-DaLFHkQ@mail.gmail.com>
Message-ID: <54577DA4.6020500@redhat.com>

I think it could be javac stack size.

Try setting this:

MAVEN_OPTS='-Xms256m -Xmx1024m -Xss1024k'

or we should add something like this to pom.xml...

|<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-compiler-plugin</artifactId>
   <version>2.3.2</version>
   <configuration>|
|        <compilerArgs>
          <arg>|||-Xss20M|</arg>
        </compilerArgs>
   </configuration>
</plugin>|


Did it help?
Ondra


On 29.10.2014 10:05, Daniel Cunha wrote:
> When I skip tests I have same problem.
>
> Linux Xubuntu 32bits
> Kernel 3.13.0-37
> JDK 1.7.0_72
>
> On Wed, Oct 29, 2014 at 2:41 AM, Lincoln Baxter, III 
> <lincolnbaxter at gmail.com <mailto:lincolnbaxter at gmail.com>> wrote:
>
>     Also, what is your Java version and OS?
>
>     On Tue, Oct 28, 2014 at 11:32 PM, Lincoln Baxter, III
>     <lincolnbaxter at gmail.com <mailto:lincolnbaxter at gmail.com>> wrote:
>
>         This happened to me recently, and in the end I think I didn't
>         find a solution, but it hasn't happened since. What happens if
>         you skip the tests?
>
>         On Tue, Oct 28, 2014 at 7:20 PM, Daniel Cunha
>         <danielsoro at gmail.com <mailto:danielsoro at gmail.com>> wrote:
>
>             Hi folks,
>
>             I had this problem with my build:
>             https://www.irccloud.com/pastebin/e4EvaA1y
>
>             I would like simulate this problem:
>             https://issues.jboss.org/browse/WINDUP-305
>             Maybe is a problem on ?sh. I can fix it. :)
>
>             -- 
>             Daniel Cunha (soro) <http://www.cejug.net>
>             Blog: http://www.danielsoro.com.br
>             Twitter: https://twitter.com/dvlc_
>             GitHub: https://github.com/danielsoro
>             LinkedIn: http://www.linkedin.com/in/danielvlcunha
>
>             _______________________________________________
>             windup-dev mailing list
>             windup-dev at lists.jboss.org <mailto:windup-dev at lists.jboss.org>
>             https://lists.jboss.org/mailman/listinfo/windup-dev
>
>
>
>
>         -- 
>         Lincoln Baxter, III
>         http://ocpsoft.org
>         "Simpler is better."
>
>
>
>
>     -- 
>     Lincoln Baxter, III
>     http://ocpsoft.org
>     "Simpler is better."
>
>     _______________________________________________
>     windup-dev mailing list
>     windup-dev at lists.jboss.org <mailto:windup-dev at lists.jboss.org>
>     https://lists.jboss.org/mailman/listinfo/windup-dev
>
>
>
>
> -- 
> Daniel Cunha (soro) <http://www.cejug.net>
> Blog: http://www.danielsoro.com.br
> Twitter: https://twitter.com/dvlc_
> GitHub: https://github.com/danielsoro
> LinkedIn: http://www.linkedin.com/in/danielvlcunha
>
>
> _______________________________________________
> windup-dev mailing list
> windup-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/windup-dev

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141103/78e1a963/attachment-0001.html 

From danielsoro at gmail.com  Mon Nov  3 08:51:26 2014
From: danielsoro at gmail.com (Daniel Cunha)
Date: Mon, 3 Nov 2014 11:51:26 -0200
Subject: [windup-dev] Build Problem
In-Reply-To: <54577DA4.6020500@redhat.com>
References: <CAHLHu47bnW6OH2sVdWYpwXO7xD5q5YcP0twkivN23nitvuH11Q@mail.gmail.com>
	<CAEp_U4FWiappkKwYMUV9KUq2m8W+xffjU5KmcL-OvLG0Qvj3PA@mail.gmail.com>
	<CAEp_U4FMB9nn-7nsZuFLXb0zumjMwjde=XfY3o0kdowEjP3N9g@mail.gmail.com>
	<CAHLHu44AMw6EKHWcH18FJunMcbnQ=i632H3Z60+cte-DaLFHkQ@mail.gmail.com>
	<54577DA4.6020500@redhat.com>
Message-ID: <CAHLHu464Yq5dtB2PYLkJa0k=_+aNrRiJa+atzPMj-KRc9OO3kw@mail.gmail.com>

Great!

Fixed. ;)

Thank you Ondrej. :)

On Mon, Nov 3, 2014 at 11:05 AM, Ondrej Zizka <ozizka at redhat.com> wrote:

>  I think it could be javac stack size.
>
> Try setting this:
>
> MAVEN_OPTS='-Xms256m -Xmx1024m -Xss1024k'
>
> or we should add something like this to pom.xml...
>
> <plugin>
>   <groupId>org.apache.maven.plugins</groupId>
>   <artifactId>maven-compiler-plugin</artifactId>
>   <version>2.3.2</version>
>   <configuration>       <compilerArgs>
>          <arg>-Xss20M</arg>
>        </compilerArgs>
>   </configuration></plugin>
>
>
> Did it help?
> Ondra
>
>
>
> On 29.10.2014 10:05, Daniel Cunha wrote:
>
> When I skip tests I have same problem.
>
> Linux Xubuntu 32bits
> Kernel 3.13.0-37
> JDK 1.7.0_72
>
> On Wed, Oct 29, 2014 at 2:41 AM, Lincoln Baxter, III <
> lincolnbaxter at gmail.com> wrote:
>
>> Also, what is your Java version and OS?
>>
>> On Tue, Oct 28, 2014 at 11:32 PM, Lincoln Baxter, III <
>> lincolnbaxter at gmail.com> wrote:
>>
>>> This happened to me recently, and in the end I think I didn't find a
>>> solution, but it hasn't happened since. What happens if you skip the tests?
>>>
>>>  On Tue, Oct 28, 2014 at 7:20 PM, Daniel Cunha <danielsoro at gmail.com>
>>> wrote:
>>>
>>>>   Hi folks,
>>>>
>>>>  I had this problem with my build:
>>>> https://www.irccloud.com/pastebin/e4EvaA1y
>>>>
>>>>  I would like simulate this problem:
>>>> https://issues.jboss.org/browse/WINDUP-305
>>>> Maybe is a problem on ?sh. I can fix it. :)
>>>>
>>>>  --
>>>>  Daniel Cunha (soro) <http://www.cejug.net>
>>>>  Blog: http://www.danielsoro.com.br
>>>> Twitter: https://twitter.com/dvlc_
>>>> GitHub: https://github.com/danielsoro
>>>> LinkedIn:  http://www.linkedin.com/in/danielvlcunha
>>>>
>>>>  _______________________________________________
>>>> windup-dev mailing list
>>>> windup-dev at lists.jboss.org
>>>> https://lists.jboss.org/mailman/listinfo/windup-dev
>>>>
>>>
>>>
>>>
>>>  --
>>> Lincoln Baxter, III
>>> http://ocpsoft.org
>>> "Simpler is better."
>>>
>>
>>
>>
>>  --
>> Lincoln Baxter, III
>> http://ocpsoft.org
>> "Simpler is better."
>>
>> _______________________________________________
>> windup-dev mailing list
>> windup-dev at lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/windup-dev
>>
>
>
>
>  --
>  Daniel Cunha (soro) <http://www.cejug.net>
>  Blog: http://www.danielsoro.com.br
> Twitter: https://twitter.com/dvlc_
> GitHub: https://github.com/danielsoro
> LinkedIn:  http://www.linkedin.com/in/danielvlcunha
>
>
> _______________________________________________
> windup-dev mailing listwindup-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/windup-dev
>
>
>


-- 
Daniel Cunha (soro) <http://www.cejug.net>
Blog: http://www.danielsoro.com.br
Twitter: https://twitter.com/dvlc_
GitHub: https://github.com/danielsoro
LinkedIn:  http://www.linkedin.com/in/danielvlcunha
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141103/31f12dae/attachment.html 

From lincolnbaxter at gmail.com  Mon Nov  3 09:18:15 2014
From: lincolnbaxter at gmail.com (Lincoln Baxter, III)
Date: Mon, 3 Nov 2014 09:18:15 -0500
Subject: [windup-dev] Build Problem
In-Reply-To: <CAHLHu464Yq5dtB2PYLkJa0k=_+aNrRiJa+atzPMj-KRc9OO3kw@mail.gmail.com>
References: <CAHLHu47bnW6OH2sVdWYpwXO7xD5q5YcP0twkivN23nitvuH11Q@mail.gmail.com>
	<CAEp_U4FWiappkKwYMUV9KUq2m8W+xffjU5KmcL-OvLG0Qvj3PA@mail.gmail.com>
	<CAEp_U4FMB9nn-7nsZuFLXb0zumjMwjde=XfY3o0kdowEjP3N9g@mail.gmail.com>
	<CAHLHu44AMw6EKHWcH18FJunMcbnQ=i632H3Z60+cte-DaLFHkQ@mail.gmail.com>
	<54577DA4.6020500@redhat.com>
	<CAHLHu464Yq5dtB2PYLkJa0k=_+aNrRiJa+atzPMj-KRc9OO3kw@mail.gmail.com>
Message-ID: <CAEp_U4GBVHK_wdqawuUXQ5bBzXTy4ef1Hycb+nYoFTavMz1jUQ@mail.gmail.com>

Great! Yes, we should add this to the POM. I'll send a PR if not already
done.

On Mon, Nov 3, 2014 at 8:51 AM, Daniel Cunha <danielsoro at gmail.com> wrote:

> Great!
>
> Fixed. ;)
>
> Thank you Ondrej. :)
>
> On Mon, Nov 3, 2014 at 11:05 AM, Ondrej Zizka <ozizka at redhat.com> wrote:
>
>>  I think it could be javac stack size.
>>
>> Try setting this:
>>
>> MAVEN_OPTS='-Xms256m -Xmx1024m -Xss1024k'
>>
>> or we should add something like this to pom.xml...
>>
>> <plugin>
>>   <groupId>org.apache.maven.plugins</groupId>
>>   <artifactId>maven-compiler-plugin</artifactId>
>>   <version>2.3.2</version>
>>   <configuration>       <compilerArgs>
>>          <arg>-Xss20M</arg>
>>        </compilerArgs>
>>   </configuration></plugin>
>>
>>
>> Did it help?
>> Ondra
>>
>>
>>
>> On 29.10.2014 10:05, Daniel Cunha wrote:
>>
>> When I skip tests I have same problem.
>>
>> Linux Xubuntu 32bits
>> Kernel 3.13.0-37
>> JDK 1.7.0_72
>>
>> On Wed, Oct 29, 2014 at 2:41 AM, Lincoln Baxter, III <
>> lincolnbaxter at gmail.com> wrote:
>>
>>> Also, what is your Java version and OS?
>>>
>>> On Tue, Oct 28, 2014 at 11:32 PM, Lincoln Baxter, III <
>>> lincolnbaxter at gmail.com> wrote:
>>>
>>>> This happened to me recently, and in the end I think I didn't find a
>>>> solution, but it hasn't happened since. What happens if you skip the tests?
>>>>
>>>>  On Tue, Oct 28, 2014 at 7:20 PM, Daniel Cunha <danielsoro at gmail.com>
>>>> wrote:
>>>>
>>>>>   Hi folks,
>>>>>
>>>>>  I had this problem with my build:
>>>>> https://www.irccloud.com/pastebin/e4EvaA1y
>>>>>
>>>>>  I would like simulate this problem:
>>>>> https://issues.jboss.org/browse/WINDUP-305
>>>>> Maybe is a problem on ?sh. I can fix it. :)
>>>>>
>>>>>  --
>>>>>  Daniel Cunha (soro) <http://www.cejug.net>
>>>>>  Blog: http://www.danielsoro.com.br
>>>>> Twitter: https://twitter.com/dvlc_
>>>>> GitHub: https://github.com/danielsoro
>>>>> LinkedIn:  http://www.linkedin.com/in/danielvlcunha
>>>>>
>>>>>  _______________________________________________
>>>>> windup-dev mailing list
>>>>> windup-dev at lists.jboss.org
>>>>> https://lists.jboss.org/mailman/listinfo/windup-dev
>>>>>
>>>>
>>>>
>>>>
>>>>  --
>>>> Lincoln Baxter, III
>>>> http://ocpsoft.org
>>>> "Simpler is better."
>>>>
>>>
>>>
>>>
>>>  --
>>> Lincoln Baxter, III
>>> http://ocpsoft.org
>>> "Simpler is better."
>>>
>>> _______________________________________________
>>> windup-dev mailing list
>>> windup-dev at lists.jboss.org
>>> https://lists.jboss.org/mailman/listinfo/windup-dev
>>>
>>
>>
>>
>>  --
>>  Daniel Cunha (soro) <http://www.cejug.net>
>>  Blog: http://www.danielsoro.com.br
>> Twitter: https://twitter.com/dvlc_
>> GitHub: https://github.com/danielsoro
>> LinkedIn:  http://www.linkedin.com/in/danielvlcunha
>>
>>
>> _______________________________________________
>> windup-dev mailing listwindup-dev at lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/windup-dev
>>
>>
>>
>
>
> --
> Daniel Cunha (soro) <http://www.cejug.net>
> Blog: http://www.danielsoro.com.br
> Twitter: https://twitter.com/dvlc_
> GitHub: https://github.com/danielsoro
> LinkedIn:  http://www.linkedin.com/in/danielvlcunha
>
> _______________________________________________
> windup-dev mailing list
> windup-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/windup-dev
>



-- 
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141103/6346aa25/attachment-0001.html 

From sgilda at redhat.com  Mon Nov  3 10:00:25 2014
From: sgilda at redhat.com (Sande Gilda)
Date: Mon, 03 Nov 2014 10:00:25 -0500
Subject: [windup-dev] Build Problem
In-Reply-To: <CAEp_U4GBVHK_wdqawuUXQ5bBzXTy4ef1Hycb+nYoFTavMz1jUQ@mail.gmail.com>
References: <CAHLHu47bnW6OH2sVdWYpwXO7xD5q5YcP0twkivN23nitvuH11Q@mail.gmail.com>	<CAEp_U4FWiappkKwYMUV9KUq2m8W+xffjU5KmcL-OvLG0Qvj3PA@mail.gmail.com>	<CAEp_U4FMB9nn-7nsZuFLXb0zumjMwjde=XfY3o0kdowEjP3N9g@mail.gmail.com>	<CAHLHu44AMw6EKHWcH18FJunMcbnQ=i632H3Z60+cte-DaLFHkQ@mail.gmail.com>	<54577DA4.6020500@redhat.com>	<CAHLHu464Yq5dtB2PYLkJa0k=_+aNrRiJa+atzPMj-KRc9OO3kw@mail.gmail.com>
	<CAEp_U4GBVHK_wdqawuUXQ5bBzXTy4ef1Hycb+nYoFTavMz1jUQ@mail.gmail.com>
Message-ID: <54579889.70404@redhat.com>

Way to go Ondra!

On 11/03/2014 09:18 AM, Lincoln Baxter, III wrote:
> Great! Yes, we should add this to the POM. I'll send a PR if not 
> already done.
>
> On Mon, Nov 3, 2014 at 8:51 AM, Daniel Cunha <danielsoro at gmail.com 
> <mailto:danielsoro at gmail.com>> wrote:
>
>     Great!
>
>     Fixed. ;)
>
>     Thank you Ondrej. :)
>
>     On Mon, Nov 3, 2014 at 11:05 AM, Ondrej Zizka <ozizka at redhat.com
>     <mailto:ozizka at redhat.com>> wrote:
>
>         I think it could be javac stack size.
>
>         Try setting this:
>
>         MAVEN_OPTS='-Xms256m -Xmx1024m -Xss1024k'
>
>         or we should add something like this to pom.xml...
>
>         |<plugin>
>            <groupId>org.apache.maven.plugins</groupId>
>            <artifactId>maven-compiler-plugin</artifactId>
>            <version>2.3.2</version>
>            <configuration>|
>         |        <compilerArgs>
>                   <arg>|||-Xss20M|</arg>
>                 </compilerArgs>
>            </configuration>
>         </plugin>|
>
>
>         Did it help?
>         Ondra
>
>
>
>         On 29.10.2014 10:05, Daniel Cunha wrote:
>>         When I skip tests I have same problem.
>>
>>         Linux Xubuntu 32bits
>>         Kernel 3.13.0-37
>>         JDK 1.7.0_72
>>
>>         On Wed, Oct 29, 2014 at 2:41 AM, Lincoln Baxter, III
>>         <lincolnbaxter at gmail.com <mailto:lincolnbaxter at gmail.com>> wrote:
>>
>>             Also, what is your Java version and OS?
>>
>>             On Tue, Oct 28, 2014 at 11:32 PM, Lincoln Baxter, III
>>             <lincolnbaxter at gmail.com
>>             <mailto:lincolnbaxter at gmail.com>> wrote:
>>
>>                 This happened to me recently, and in the end I think
>>                 I didn't find a solution, but it hasn't happened
>>                 since. What happens if you skip the tests?
>>
>>                 On Tue, Oct 28, 2014 at 7:20 PM, Daniel Cunha
>>                 <danielsoro at gmail.com <mailto:danielsoro at gmail.com>>
>>                 wrote:
>>
>>                     Hi folks,
>>
>>                     I had this problem with my build:
>>                     https://www.irccloud.com/pastebin/e4EvaA1y
>>
>>                     I would like simulate this problem:
>>                     https://issues.jboss.org/browse/WINDUP-305
>>                     Maybe is a problem on ?sh. I can fix it. :)
>>
>>                     -- 
>>                     Daniel Cunha (soro) <http://www.cejug.net>
>>                     Blog: http://www.danielsoro.com.br
>>                     Twitter: https://twitter.com/dvlc_
>>                     GitHub: https://github.com/danielsoro
>>                     LinkedIn: http://www.linkedin.com/in/danielvlcunha
>>
>>                     _______________________________________________
>>                     windup-dev mailing list
>>                     windup-dev at lists.jboss.org
>>                     <mailto:windup-dev at lists.jboss.org>
>>                     https://lists.jboss.org/mailman/listinfo/windup-dev
>>
>>
>>
>>
>>                 -- 
>>                 Lincoln Baxter, III
>>                 http://ocpsoft.org
>>                 "Simpler is better."
>>
>>
>>
>>
>>             -- 
>>             Lincoln Baxter, III
>>             http://ocpsoft.org
>>             "Simpler is better."
>>
>>             _______________________________________________
>>             windup-dev mailing list
>>             windup-dev at lists.jboss.org
>>             <mailto:windup-dev at lists.jboss.org>
>>             https://lists.jboss.org/mailman/listinfo/windup-dev
>>
>>
>>
>>
>>         -- 
>>         Daniel Cunha (soro) <http://www.cejug.net>
>>         Blog: http://www.danielsoro.com.br
>>         Twitter: https://twitter.com/dvlc_
>>         GitHub: https://github.com/danielsoro
>>         LinkedIn: http://www.linkedin.com/in/danielvlcunha
>>
>>
>>         _______________________________________________
>>         windup-dev mailing list
>>         windup-dev at lists.jboss.org  <mailto:windup-dev at lists.jboss.org>
>>         https://lists.jboss.org/mailman/listinfo/windup-dev
>
>
>
>
>     -- 
>     Daniel Cunha (soro) <http://www.cejug.net>
>     Blog: http://www.danielsoro.com.br
>     Twitter: https://twitter.com/dvlc_
>     GitHub: https://github.com/danielsoro
>     LinkedIn: http://www.linkedin.com/in/danielvlcunha
>
>     _______________________________________________
>     windup-dev mailing list
>     windup-dev at lists.jboss.org <mailto:windup-dev at lists.jboss.org>
>     https://lists.jboss.org/mailman/listinfo/windup-dev
>
>
>
>
> -- 
> Lincoln Baxter, III
> http://ocpsoft.org
> "Simpler is better."
>
>
> _______________________________________________
> windup-dev mailing list
> windup-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/windup-dev

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141103/b8541f1a/attachment.html 

From lincolnbaxter at gmail.com  Wed Nov  5 11:20:15 2014
From: lincolnbaxter at gmail.com (Lincoln Baxter, III)
Date: Wed, 5 Nov 2014 11:20:15 -0500
Subject: [windup-dev] (no subject)
Message-ID: <CAEp_U4Gg9-gmoYuvthByqibC5Lba5kBTsvV_dhpvoEM6TPy-LQ@mail.gmail.com>

Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.html

Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.txt

Log:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.log.html

Meeting summary
---------------
* Agenda  (lincolnthree, 15:09:52)

* Status Reports  (lincolnthree, 15:11:37)
  * Last week I gave another rules demo to some more consultants.
    jsightler, pmuir, and sgilda were there as well.  (lincolnthree,
    15:13:19)
  * I also worked on reviewing PRs, as usual.  (lincolnthree, 15:13:29)
  * I dabbled with implementing parameterized rules (Can't find a JIRA
    for this, will add one.)  (lincolnthree, 15:14:05)
  * I also updated some of the syntax for the XML rules we have as of
    now  (lincolnthree, 15:14:38)
  * This week I will continue to work on parameterization of rules,
    among other things.  (lincolnthree, 15:15:04)
  * LINK: https://github.com/windup/windup/pull/335   (lincolnthree,
    15:22:27)
  * LINK:
    https://github.com/windup/windup/pull/335/files#diff-4582b3082fd39e06dee3abd6b9b1043eR122
    (lincolnthree, 15:23:29)
  * LINK: http://paste2.org/4Cn4H4pc   (lincolnthree, 15:24:34)
  * I worked on WINDUP-373 last week -- this is just to create a way to
    guide the user in selecting packages/jars  (jsightler, 15:27:01)
  * It is mostly done, but I would like to integrate the work from
    WINDUP-369 before sending a PR (as it is related)  (jsightler,
    15:27:32)
  * I have also spent some time trying the WINDUP-336 PR  (jsightler,
    15:28:46)
  * because of the time shift in our country, I missed last meeting. So
    I will just give some notes  (mbriskar, 15:40:25)
  * I was on conference for two days, but besides I think I finished the
    application link path using Breadcrumbs in the report  (mbriskar,
    15:41:27)
  * and some minor fixes in the xml rules  (mbriskar, 15:42:05)
  * now I am trying to make the multithreading decompilation work, but
    it looks like it is stuck and I have no idea how to push it forward
    (lot of OutOfMemory exceptions)  (mbriskar, 15:42:43)
  * I am also working on WINDUP-369 - shortly, being able to ignore some
    files from being scanned, suitable for some libraries like ant.jar
    etc.  (mbriskar, 15:43:23)
  * Last week - vacation, except Friday  (ozizka, 15:45:42)
  * This week - so far working on WINDUP-346, resp. moving that to
    Bootstrap.  (ozizka, 15:45:42)
  * Wanted to get the possible windup params dynamically, but that would
    need Furnace to be already booted. So only few hard-coded for now.
    (ozizka, 15:45:42)
  * Almost done.  (ozizka, 15:45:42)
  * On Friday, I started to look into WINDUP-355  (ozizka, 15:45:42)

* Priorities  (lincolnthree, 15:46:58)

   1. Performance
   2. Parametererization of rules

   3. Code cleanup and JIRA maintenance

* Weekly Release  (lincolnthree, 15:53:52)
  * We need to do a weekly release soon. We can do it whenever, but
    please make sure that any issues you've fixed are closed in JIRA so
    that they get included in the release notes.  (lincolnthree,
    15:54:30)

-- 
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141105/aa91056c/attachment-0001.html 

From lincolnbaxter at gmail.com  Wed Nov  5 11:22:19 2014
From: lincolnbaxter at gmail.com (Lincoln Baxter, III)
Date: Wed, 5 Nov 2014 11:22:19 -0500
Subject: [windup-dev] Windup Meeting Minutes - 2014-11-05
Message-ID: <CAEp_U4E270qjVv+VLMDrb=JZKNQ2BQV4jRk0+xEpLy6Mn5=jXA@mail.gmail.com>

Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.html

Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.txt

Log:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-05-15.09.log.html


Meeting summary
---------------
* Agenda  (lincolnthree, 15:09:52)

* Status Reports  (lincolnthree, 15:11:37)
  * Last week I gave another rules demo to some more consultants.
    jsightler, pmuir, and sgilda were there as well.  (lincolnthree,
    15:13:19)
  * I also worked on reviewing PRs, as usual.  (lincolnthree, 15:13:29)
  * I dabbled with implementing parameterized rules (Can't find a JIRA
    for this, will add one.)  (lincolnthree, 15:14:05)
  * I also updated some of the syntax for the XML rules we have as of
    now  (lincolnthree, 15:14:38)
  * This week I will continue to work on parameterization of rules,
    among other things.  (lincolnthree, 15:15:04)
  * LINK: https://github.com/windup/windup/pull/335   (lincolnthree,
    15:22:27)
  * LINK:
    https://github.com/windup/windup/pull/335/files#diff-4582b3082fd39e06dee3abd6b9b1043eR122
    (lincolnthree, 15:23:29)
  * LINK: http://paste2.org/4Cn4H4pc   (lincolnthree, 15:24:34)
  * I worked on WINDUP-373 last week -- this is just to create a way to
    guide the user in selecting packages/jars  (jsightler, 15:27:01)
  * It is mostly done, but I would like to integrate the work from
    WINDUP-369 before sending a PR (as it is related)  (jsightler,
    15:27:32)
  * I have also spent some time trying the WINDUP-336 PR  (jsightler,
    15:28:46)
  * because of the time shift in our country, I missed last meeting. So
    I will just give some notes  (mbriskar, 15:40:25)
  * I was on conference for two days, but besides I think I finished the
    application link path using Breadcrumbs in the report  (mbriskar,
    15:41:27)
  * and some minor fixes in the xml rules  (mbriskar, 15:42:05)
  * now I am trying to make the multithreading decompilation work, but
    it looks like it is stuck and I have no idea how to push it forward
    (lot of OutOfMemory exceptions)  (mbriskar, 15:42:43)
  * I am also working on WINDUP-369 - shortly, being able to ignore some
    files from being scanned, suitable for some libraries like ant.jar
    etc.  (mbriskar, 15:43:23)
  * Last week - vacation, except Friday  (ozizka, 15:45:42)
  * This week - so far working on WINDUP-346, resp. moving that to
    Bootstrap.  (ozizka, 15:45:42)
  * Wanted to get the possible windup params dynamically, but that would
    need Furnace to be already booted. So only few hard-coded for now.
    (ozizka, 15:45:42)
  * Almost done.  (ozizka, 15:45:42)
  * On Friday, I started to look into WINDUP-355  (ozizka, 15:45:42)

* Priorities  (lincolnthree, 15:46:58)

   1. Performance
   2. Parametererization of rules

   3. Code cleanup and JIRA maintenance

* Weekly Release  (lincolnthree, 15:53:52)
  * We need to do a weekly release soon. We can do it whenever, but
    please make sure that any issues you've fixed are closed in JIRA so
    that they get included in the release notes.  (lincolnthree,
    15:54:30)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141105/569c4f7a/attachment.html 

From lincolnbaxter at gmail.com  Thu Nov 13 11:02:17 2014
From: lincolnbaxter at gmail.com (Lincoln Baxter, III)
Date: Thu, 13 Nov 2014 11:02:17 -0500
Subject: [windup-dev] Windup Meeting Minutes - 1014-11-12
Message-ID: <CAEp_U4Hzf8ukTVF_B1_wbUjJMLL675yy87J6gU6Rmd8Owr=6gA@mail.gmail.com>

windup.2014-11-12-15.04.html
<http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-12-15.04.html>4.4
KB2014-11-12 16:03:04windup.2014-11-12-15.04.log.html
<http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-12-15.04.log.html>30.9
KB2014-11-12 16:03:04windup.2014-11-12-15.04.log.txt
<http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-12-15.04.log.txt>13.5
KB2014-11-12 16:03:04windup.2014-11-12-15.04.txt
<http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-12-15.04.txt>2.1
KB2014-11-12 16:03:04


Meeting summary
---------------
* Agenda  (lincolnthree, 15:06:10)

* Status Reports  (mbriskar, 15:08:24)
  * I was working on WINDUP-369, now we are able to ignore the files
    from being scaned by windup. Firstly it checks ~/.windup/ignore,
    then it checks windup_home/ignore and then all the paths specified
    by the user. The regex for the files is *windup-ignore.txt
    (mbriskar, 15:10:28)
  * regarding WINDUP-336: Still stuck, the author replied and said
    procyon is really not suitable for the threading, but he said he
    will look at my code and will try to help. He assumes just having
    different metadata should help (what we already did)  (mbriskar,
    15:11:46)
  * started to work on WINDUP-331, trying to use mocks with the tests,
    but it fails now (test not found in any deployed addon error)
    (mbriskar, 15:13:11)
  * Ive been working on rule parameterization. I've made a bit more
    progress and I think I'm almost there - work can be seen in my
    branch: https://github.com/windup/windup/pull/335/commits
    (lincolnthree, 15:16:11)
  * I worked on a system of correlating conditions via the use of
    Gremlin Pipelines.  (jsightler, 15:23:51)
  * The PR is here: https://github.com/windup/windup/pull/347
    (jsightler, 15:23:55)
  * It is almost done (just needs refinement and testing, IMO)
    (jsightler, 15:24:11)

* status updates  (mbriskar, 15:30:25)

* Priorities  (mbriskar, 15:30:30)


-- 
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141113/eeaaa2e5/attachment.html 

From lincolnbaxter at gmail.com  Wed Nov 19 10:43:41 2014
From: lincolnbaxter at gmail.com (Lincoln Baxter, III)
Date: Wed, 19 Nov 2014 10:43:41 -0500
Subject: [windup-dev] Windup meeting minutes - 2014-11-19
Message-ID: <CAEp_U4FB=uhFCdz6FteUsn+dKdWwrhsfWt4123Bg4VW1m9=nvA@mail.gmail.com>

Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-19-15.05.html

Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-19-15.05.txt

Log:
http://transcripts.jboss.org/meeting/irc.freenode.org/windup/2014/windup.2014-11-19-15.05.log.html

Meeting summary
---------------
* Agenda  (lincolnthree, 15:06:07)

* Status Reports  (lincolnthree, 15:08:00)
  * Last week I worked on rule condition parameterization, and got a
    preliminary prototype working. This week I'm going to continue with
    that and work on the operation aspect of the same feature.
    (lincolnthree, 15:09:19)
  * I should have an updated prototype today  (lincolnthree, 15:09:36)
  * I'm also going to review the PRs that I've missed over the past few
    days.  (lincolnthree, 15:09:47)
  * I added some tests that uses external groovy tests (for JavaClass,
    XmlFile) .. WINDUP-380  (mbriskar, 15:15:05)
  * I also worked on a small issue WINDUP-331, during which I filed new
    forge issue : FORGE-2144  (mbriskar, 15:15:35)
  * and I also tried to catch with the latest PR's  (mbriskar, 15:16:01)
  * I studied lincolnthree's PR in-depth. It's pretty complicated, but
    the effects for rule-writing are quite powerful. It pretty clearly
    looks like the way forward for getting us a lot more flexibility in
    the rules.  (jsightler, 15:17:29)
  * I've also reviewed some PRs (including the nice one from ozizka that
    makes the bootstrap CLI a lot easier to use), and I am working on
    multithreaded decompilation  (jsightler, 15:18:07)
  * WINDUP-355 Victi.ms - a working ruleset, but without reporting -
    working on that  (ozizka, 15:19:24)
  * Javadoc for Beta5  (ozizka, 15:19:39)
  * Working on finishing  https://github.com/windup/windup/pull/329
    (ozizka, 15:21:12)

* Priorities  (lincolnthree, 15:25:43)
  * Priorities remain unchanged for the most part, I think..
    Performance, Rule parameterization, and stability/reliability are
    the top requests.  (lincolnthree, 15:26:23)


-- 
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/windup-dev/attachments/20141119/220e7ad9/attachment.html 

From ozizka at redhat.com  Mon Nov 24 17:58:01 2014
From: ozizka at redhat.com (Ondrej Zizka)
Date: Mon, 24 Nov 2014 23:58:01 +0100
Subject: [windup-dev] Performance tuning from users PoV?
Message-ID: <5473B7F9.2010900@redhat.com>

Hi,

please check https://github.com/windup/windup/wiki/Performance-tuning
and add or tell me if there's something more that the user can play with 
to tune performance.

Thanks,
Ondra

From ozizka at redhat.com  Mon Nov 24 18:19:01 2014
From: ozizka at redhat.com (Ondrej Zizka)
Date: Tue, 25 Nov 2014 00:19:01 +0100
Subject: [windup-dev] XmlFile vs. XmlFileCondition
Message-ID: <5473BCE5.4020806@redhat.com>

Hi,

wouldn't it be better to split XmlFile's static code from what should 
really be a XmlCondition? For the sake of code readability and 
debugging. From user's PoV it would be the same - he would still see

     .when(XmlFile.matchesXpath("//catalog/chain | //catalog/chains"))

Regards,
Ondra

From ozizka at redhat.com  Thu Nov 27 01:01:40 2014
From: ozizka at redhat.com (Ondrej Zizka)
Date: Thu, 27 Nov 2014 07:01:40 +0100
Subject: [windup-dev] XML rules test failure
Message-ID: <5476BE44.9080809@redhat.com>

Hi,

this is what I get with current master.
However on Jenkins it's ok.
Any idea what can be wrong?

Thanks,
Ondra


Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 18.532 
sec <<< FAILURE! - in 
org.jboss.windup.rules.xml.XMLTransformationXMLRulesTest
testXSLTTransformation(org.jboss.windup.rules.xml.XMLTransformationXMLRulesTest) 
Time elapsed: 6.247 sec  <<< FAILURE!
java.lang.AssertionError: null
     at org.junit.Assert.fail(Assert.java:86)
     at org.junit.Assert.assertTrue(Assert.java:41)
     at org.junit.Assert.assertTrue(Assert.java:52)
     at 
org.jboss.windup.rules.xml.XMLTransformationXMLRulesTest.testXSLTTransformation(XMLTransformationXMLRulesTest.java:118)


Results :

Failed tests:
   XMLTransformationTest.testXSLTTransformation:126 null
GroovyExtensionXmlRulesTest.testHintsAndClassificationOperation:120 
expected:<2> but was:<0>
   XMLFileNestedConditionTest.testNestedCondition:128 expected:<1> but 
was:<0>
   XMLHintsClassificationsTest.testHintAndClassificationOperation:130 
expected:<2> but was:<0>
   XMLTransformationXMLRulesTest.testXSLTTransformation:118 null