[00:03:22] <mojavelinux> i noticed we don't have a dist for solder [00:03:38] <mojavelinux> we can add that after the fact I think...or maybe a Beta2 thing...what's important right now is the jar files [00:03:43] <mojavelinux> almost have this commit ready [00:08:41] <sbryzak> mojavelinux: great :) [00:09:08] <mojavelinux> we really need to pull up a lot of dependencies into the seam-bom that are currently floating in modules...the seam-bom is feeling very anemic [00:09:14] <mojavelinux> as in, not helpful :) [00:09:47] <sbryzak> i agree [00:10:06] <mojavelinux> that will be part of the module upgrade early next week [00:13:42] <mojavelinux> we should also look to see if solder is working with the latest glassfish build...this is a real problem for seam right now in terms of advocacy [00:13:53] <mojavelinux> because it won't run on glassfish..now, it's not really a solder problem [00:14:13] <mojavelinux> it is really a compliance issue, but we are going to be asked about a trillion times, so we should at least see what the current status is [00:14:41] <mojavelinux> personally, I find it very important [00:14:55] <mojavelinux> as it delivers on our goal of portability [00:22:47] <mojavelinux> interesting...I added jboss-logging to the arquillian deployment and the tests still passed...so I don't know whether we even have a problem at all [00:22:57] <mojavelinux> I need to go deeper to be absolutely sure [00:23:02] <mojavelinux> but I don't think it's going to be an issue [00:23:35] <sbryzak> i think we need to try deploying it [00:29:38] <mojavelinux> yep, definitely...I just don't want to hold you guys up....trying to get this commit done. I'm at the enter comment stage :) [00:29:49] *** lincolnthree has joined #seam-dev [00:29:49] <jbossbot> git [forge] push master 0d6a02d.. Lincoln Baxter, III scaffold generates view, edit, create, and list [00:29:50] <jbossbot> git [forge] push master fcd6b61.. Mike Brock bug fix to PathspecParser [00:29:50] <jbossbot> git [forge] push master 03a9c81.. Lincoln Baxter, III added hasMethod() and getMethod() String methods [00:29:50] <jbossbot> git [forge] push master 579511b.. Lincoln Baxter, III renamed templates to prevent IDE conflicts [00:29:50] <jbossbot> git [forge] push master 7f26236.. Lincoln Baxter, III CDIFacet can now be used to edit beans.xml [00:29:50] <jbossbot> git [forge] push master 6e6ec52.. Lincoln Baxter, III once seam-persistence no longer pulls in a faulty weldx, scaffolding will be working [00:29:50] <jbossbot> git [forge] push master 9dba7e0.. Lincoln Baxter, III Merge branch 'master' of http://github.com/mikebrock/seam-forge [00:29:51] <jbossbot> git [forge] push master 40c7583.. Lincoln Baxter, III fixed persistence broken deps [00:29:51] <jbossbot> git [forge] push master URL: http://github.com/seam/forge/compare/8751fed...40c7583 [00:30:04] *** lincolnthree has left #seam-dev [00:30:43] *** rruss has quit IRC [00:35:33] <jbossbot> git [solder] push master 4c5b299.. Dan Allen bring build under the Seam 3 parent... [00:35:33] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/3b01b9c...4c5b299 [00:36:23] <jbossbot> git [solder] push master 70d10ec.. Dan Allen fix project name in readme.md [00:36:24] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/4c5b299...70d10ec [00:37:10] <mojavelinux> okay, we are all set https://github.com/seam/solder [00:37:46] <mojavelinux> go ahead and see if you can purge slf4j [00:37:55] <sbryzak> i'm on it [00:59:59] <jbossbot> git [solder] push master 06d4eeb.. Shane Bryzak SOLDER-35 - Remove slf4j usage from Solder [00:59:59] <jbossbot> jira [SOLDER-35] Remove slf4j usage from weldx [Open, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-35 [00:59:59] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/70d10ec...06d4eeb [01:01:08] <sbryzak> are we going with 3.0.0.Beta2 for the version? [01:01:20] <sbryzak> mojavelinux: ^^ [01:01:59] <mojavelinux> I'm personally find with 3.0.0.Beta2 or 3.0.0.Beta1 [01:02:12] <mojavelinux> but let's go with Beta2 [01:02:15] <sbryzak> let's make it Beta1, i think it will be less confusing [01:02:21] <mojavelinux> okay, let's do it [01:02:22] <mojavelinux> hehehe [01:02:30] <mojavelinux> Beta1 [01:02:31] <sbryzak> heh [01:02:36] <mojavelinux> quick question [01:02:57] <mojavelinux> previously, the invokeMethod, setFieldValue and getFieldValue methods on Reflections [01:03:05] <mojavelinux> did not modify the method/fields accessibility [01:03:17] <mojavelinux> rather than just add that in, I'm creating methods that let you control that behavior [01:03:27] <mojavelinux> since I think there are probably times when you really don't want it just changing it on you [01:03:33] <mojavelinux> I'm thinking of making it the first argument [01:03:34] <mojavelinux> so like this [01:03:43] <sbryzak> the accessibility is just for that thread [01:03:46] <mojavelinux> invokeMethod(true, method, object, arg1); [01:04:07] <mojavelinux> yeah, but my point is that some people might want it to fail if it's not accessible [01:04:11] <mojavelinux> you know, in some cases [01:04:17] <sbryzak> ah ok [01:04:30] <mojavelinux> so you have three options for invoking a method [01:04:35] <mojavelinux> invokeMethod(method, object) [01:04:38] <sbryzak> i guess it makes sense to provide overloaded methods with that control [01:04:44] <mojavelinux> invokeMethod(method, object, arg1, arg2); [01:04:54] <mojavelinux> invokeMethod(true, method, object, arg1, arg2); [01:05:02] <mojavelinux> by default, no change [01:05:12] <mojavelinux> the reason the parameter is first [01:05:15] <mojavelinux> as ALR would say [01:05:21] <mojavelinux> is that it makes the methods "parallel" [01:05:30] <mojavelinux> which means, you don't have to intertwine a new option somewhere in the middle [01:05:38] <mojavelinux> and the end is taken since it's the open ended set of arguments [01:05:44] <mojavelinux> so the first position makes the most sense [01:05:51] <sbryzak> makes sense to me [01:06:04] <mojavelinux> the option, or perhaps a secondary choice [01:06:49] <mojavelinux> is to have a setAccessible(AccessibleObject object) [01:06:52] <mojavelinux> which just does [01:07:12] <mojavelinux> AccessController.doPrivileged(new SetAccessiblePriviligedAction(object)); [01:07:14] <mojavelinux> hell, why not [01:07:31] <mojavelinux> even better, it returns the thing [01:07:35] <mojavelinux> ah, that makes a lot of sense [01:07:37] <mojavelinux> then you can do [01:07:48] <mojavelinux> invokeMethod(setAccessible(method), instance, arg1)); [01:07:57] <mojavelinux> cool [01:08:01] <sbryzak> yep, i like that :) [01:08:27] <sbryzak> hmm, i wonder if it's possible to get JIRA updates posted to jbossbot [01:08:39] <sbryzak> that would be a nice feature [01:08:53] <stuartdouglas> I think it might be to much [01:09:21] <sbryzak> maybe just issue created and resolved notifications [01:09:27] <sbryzak> not edits [01:10:04] <mojavelinux> definitely created and resolved [01:10:13] <mojavelinux> comments, probably too noisy [01:10:42] <sbryzak> something to investigate when i have nothing better to do ;) [01:10:42] <mojavelinux> I actually think the commits are a bit noisy [01:10:52] <mojavelinux> hahaha, nothing better to do...those would be the days [01:11:02] <mojavelinux> Red Hat is like "are you ever going to use your vacation...take it now!" hahaha [01:11:31] <sbryzak> my last vacation was the 3 days i spent in france after devoxx last year [01:11:38] <mojavelinux> the problem starts with "I have an idea!" [01:11:45] <mojavelinux> oh geez! [01:11:55] <sbryzak> i mean, i've taken some pto this year [01:12:00] <sbryzak> but all of it was to work on my house [01:12:13] <sbryzak> so that's not really a vacation :) [01:12:20] <mojavelinux> hahah, yeah, you have to ask the wife/spouse/gf if you've taken vacation [01:12:23] <mojavelinux> they will tell you the real answer [01:12:30] <mojavelinux> it's whether *they* got to go to the beach [01:12:54] <sbryzak> hehe i know how that works [01:29:49] <sbryzak> mojavelinux: are there any other issues that i could take a look at? [01:31:17] <mojavelinux> the two remaining things are finding out whether solder works on glassfish (could use arquillian, though you may have arquillian issues w/ gf 3.1 in which case better to do a manual app deployment) [01:31:31] <mojavelinux> and finding out whether jboss-logging can be bundled w/ app deployed to jboss as [01:31:52] <mojavelinux> I'm writing up tests for SOLDER-44 [01:31:55] <jbossbot> jira [SOLDER-44] InjectableMethod should make method accessible before invoking [Open, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-44 [01:32:01] <sbryzak> i'll download glassfish and start playing [01:32:03] <mojavelinux> SOLDER-1 [01:32:05] <jbossbot> jira [SOLDER-1] ELResolver assumes flat deployment structure [Open, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-1 [01:32:11] <mojavelinux> that needs to become a cdi issue and closed [01:32:39] <mojavelinux> instructions for filing issue are in that issue [01:32:41] <mojavelinux> in the comments [01:32:49] <sbryzak> i'll take a look [01:33:48] <sbryzak> can we just move the issue to CDI? [01:35:25] <sbryzak> yeah, i just moved it [01:35:26] <sbryzak> https://issues.jboss.org/browse/CDI-22 [01:35:27] <jbossbot> jira [CDI-22] ELResolver assumes flat deployment structure [Open, Major, Unassigned] https://issues.jboss.org/browse/CDI-22 [01:37:08] <mojavelinux> cool [01:37:18] <mojavelinux> Pete will update it if he doesn't like the title or something :) [01:37:20] <sbryzak> at least that way we have the history [01:37:23] <sbryzak> exactly [01:37:27] <mojavelinux> perfect [01:38:42] <sbryzak> which version of glassfish do we want to test with? 3.0.1? [01:38:48] <sbryzak> or is there a beta [01:39:00] <sbryzak> actually there's a 3.1 Milestone 7 [01:39:06] <sbryzak> do we want to test with that? [01:41:14] <mojavelinux> yes, that's the one [01:41:21] <mojavelinux> every other version has a major issue with extension loading [01:44:07] *** tsurdilo has joined #seam-dev [01:44:08] <sbryzak> their download page is extremely confusing [01:45:58] <mojavelinux> dude, right now it is so screwed up it's just ludicrous [01:46:07] <mojavelinux> because of a total botched migration [01:46:16] <mojavelinux> so yes, I agree [01:46:26] <sbryzak> i'm guessing i need to download glassfish_3.1-web.b33.zip [01:46:53] <sbryzak> which i assume is the web profile version for milestone 7 [01:47:34] <mojavelinux> correct [01:48:16] <mojavelinux> wow, I never knew you could do that: int.class [01:48:30] <mojavelinux> I guess I just assumed a keyword couldn't be dereferenced [01:48:32] <mojavelinux> hmm, interesting [01:49:39] <sbryzak> i didn't know that either [01:50:05] <sbryzak> i thought you had to use Integer.TYPE [01:50:25] <sbryzak> i mean, i thought you could only use Integer.TYPE [01:50:26] <stuartdouglas> yes, it compiles to Integer.TYPE [01:50:29] <sbryzak> i guess they're the same :) [01:51:13] <sbryzak> so dan, have you been groped by the tsa yet? [01:59:35] <mojavelinux> excellent, now we have tests for Reflections [01:59:39] <mojavelinux> at least some of it [02:00:00] <mojavelinux> you know, for as much as I travel, I seem to just slide right on by [02:00:05] <mojavelinux> however, I have a funny ass story [02:00:08] <mojavelinux> I was w/ Lincoln [02:00:13] <mojavelinux> and he had his wallet on him [02:00:21] <mojavelinux> and I said, you know, Lincoln, you should put that on the belt [02:00:31] <mojavelinux> and he's all "no, it's fine, they never have a problem with it" [02:00:38] <mojavelinux> I said "suit yourself" and put my wallet on the belt [02:00:40] <mojavelinux> walked through [02:00:46] <mojavelinux> lincoln walks through, beep, beep, beep [02:00:57] <mojavelinux> sir, can you step over here please [02:00:58] <mojavelinux> hahaha [02:01:04] <sbryzak> hehe i'm guessing he had coins [02:01:06] <mojavelinux> I just watched in amusement [02:01:17] <mojavelinux> he had a piece of metal in his wallet [02:01:30] <mojavelinux> i was like, what the heck is that? [02:01:40] <mojavelinux> he said, it's never been a problem before [02:01:44] <mojavelinux> call it an improvement [02:02:17] <mojavelinux> he got a free feel up [02:02:40] <sbryzak> lucky him [02:02:57] <sbryzak> i think a lot of tourists are avoiding the US now because of the tsa [02:03:08] <sbryzak> i wonder how much tourism dollars the country is losing because of it [02:03:26] <mojavelinux> oh great, don't tell me that...I already have to deal with this crappy economy [02:03:40] <mojavelinux> and it's not crappy because of me, that's for sure...UPS is like our best friend this month [02:03:46] <mojavelinux> every day he has a shipment :) [02:04:13] <sbryzak> just doing your bit to keep the economy running hey ;-) [02:04:31] <mojavelinux> yep, but it's not working [02:04:33] <mojavelinux> broke ass country [02:05:03] <mojavelinux> I get so many deals in my inbox these days...and not like the typical spam [02:05:13] <mojavelinux> I mean like mailinglists that never used to give me deals [02:05:20] <mojavelinux> I think they are giving away the store tomorrow or something [02:05:26] <mojavelinux> you can buy off sections of it for 50% off [02:05:28] <sbryzak> i find that leading up to christmas there's a huge increase in spam [02:05:37] <mojavelinux> I think they are going to start selling the cash registers [02:05:44] <sbryzak> hopefully it will drop off a bit after next week [02:06:12] <mojavelinux> seriously...I get tired of deleting messages every morning [02:07:10] *** mbg has left #seam-dev [02:07:15] <mojavelinux> at restaurants there going to be like "sir, would you like to buy this salt shaker? It's buy one, get one free!" [02:07:31] <mojavelinux> we'll even wrap it for you [02:10:27] <mojavelinux> uh oh [02:10:31] <mojavelinux> github is temporarily offline [02:10:53] <mojavelinux> apparently, they have a pink unicorn [02:11:03] <mojavelinux> hahahahaha [02:11:06] <mojavelinux> it says [02:11:20] <mojavelinux> "check twitter for status alerts" [02:11:27] <mojavelinux> assuming twitter isn't also down [02:12:25] <sbryzak> github seems ok for me [02:12:42] <mojavelinux> I have to post this ;) [02:12:47] <mojavelinux> i took a screenshot [02:16:01] *** jharting has joined #seam-dev [02:16:01] *** jharting has quit IRC [02:18:02] <mojavelinux> hmm, new issues appeared for Beta1 and the issues we've been working on are still in 1.0.0.Beta2 [02:18:10] <mojavelinux> I would move all the Beta2 issues into 3.0.0.Beta1 in jira [02:18:20] <mojavelinux> because they are really the Beta1 issues [02:18:40] <sbryzak> i'll take a look [02:19:37] <mojavelinux> k [02:19:51] <mojavelinux> SOLDER-10 once we know the answer, it should just be a one line fix [02:19:53] <jbossbot> jira [SOLDER-10] To run arquillian tests jboss-logging must be explicitly stated as a dependency of the project [Open, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-10 [02:19:59] <mojavelinux> either we make it compile [02:20:14] <sbryzak> SOLDER-17 and SOLDER-12, must be because i removed the TBC version [02:20:16] <jbossbot> jira [SOLDER-17] NarrowingBeanBuilder should support reading from Annotated [Open, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-17 [02:20:16] <mojavelinux> or, we create a new version of the shaded jar (or perhaps even impl jar too) [02:20:17] <jbossbot> jira [SOLDER-12] Add isMetadataChanged() accessor to AnnotatedTypeBuilder [Open, Minor, Unassigned] https://issues.jboss.org/browse/SOLDER-12 [02:20:35] <mojavelinux> oh, crap, we really should have SOLDER-17 fixed [02:20:36] <jbossbot> jira [SOLDER-17] NarrowingBeanBuilder should support reading from Annotated [Open, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-17 [02:20:39] <mojavelinux> SOLDER-12 can get pushed [02:20:40] <jbossbot> jira [SOLDER-12] Add isMetadataChanged() accessor to AnnotatedTypeBuilder [Open, Minor, Unassigned] https://issues.jboss.org/browse/SOLDER-12 [02:21:08] <sbryzak> ok, 12 has been removed from Beta1 [02:21:12] <sbryzak> i've left 17 there [02:21:16] <mojavelinux> I have to run to dinner, but I'll try to get to 17 tonight [02:21:22] <sbryzak> no problem [02:22:08] <mojavelinux> overall though, we are looking solid for a release here...really just minor stuff left [02:22:22] <mojavelinux> I'm pretty certain that the release will be totally smooth :) [02:22:25] <mojavelinux> if you were to run it now [02:25:55] <mojavelinux> gotta run...I'll give you an update later on, and if I think of anything [02:33:55] <sbryzak> i just noticed that SOLDER-24 and SOLDER-33 are still open, both of these have a fix version of 1.1.0.Beta1 [02:33:56] <jbossbot> jira [SOLDER-24] Support injection of Bean and AnnotatedType [Open, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-24 [02:33:57] <jbossbot> jira [SOLDER-33] Support for bean declaration at constructor level [Reopened, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-33 [03:25:50] *** tsurdilo1 has joined #seam-dev [03:28:20] *** tsurdilo has quit IRC [03:41:14] *** tsurdilo1 has quit IRC [03:41:15] *** tsurdilo has joined #seam-dev [03:41:25] *** mbg has joined #seam-dev [04:06:07] *** aslak has quit IRC [04:21:20] *** tsurdilo1 has joined #seam-dev [04:21:20] *** tsurdilo has quit IRC [04:38:21] *** tsurdilo1 has quit IRC [04:38:37] *** tsurdilo has joined #seam-dev [04:50:30] *** tsurdilo1 has joined #seam-dev [04:53:15] *** tsurdilo has quit IRC [05:04:20] *** tsurdilo1 has quit IRC [05:04:35] *** tsurdilo has joined #seam-dev [05:06:56] *** tsurdilo1 has joined #seam-dev [05:08:45] *** tsurdilo has quit IRC [05:08:54] *** clerum has quit IRC [05:10:39] *** tsurdilo1 has quit IRC [05:10:55] *** tsurdilo has joined #seam-dev [05:21:45] *** clerum has joined #seam-dev [05:48:45] <mojavelinux> I've added some additional issues into Beta1 that I know already have fixes available...I'll apply them shortly [05:49:05] <mojavelinux> also, we do happen to have an issue for GlassFish 3.1 compliance, so I went ahead and assigned that to you shane since you are looking into it [05:49:16] <mojavelinux> if you find it just isn't something we can fix now, feel free to push it [05:49:36] <mojavelinux> the important part is that we have a clear understanding of the current situation [05:49:50] <mojavelinux> I also fixed the roadmap versions so they are all 3.x [05:59:53] *** mbg has quit IRC [06:39:16] *** mbg has joined #seam-dev [06:48:55] <mbg> sbryzak: ping? [07:21:02] *** tsurdilo has quit IRC [07:35:09] <sbryzak> mbg: pong [07:36:39] *** clerum has quit IRC [08:12:45] <jbossbot> git [solder] push master 48a6d0e.. Dan Allen SOLDER-44 set accessible flag on method/field... [08:12:46] <jbossbot> jira [SOLDER-44] InjectableMethod should make method accessible before invoking [Resolved, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-44 [08:12:46] <jbossbot> git [solder] push master 3c4bd1b.. Dan Allen fix reference to seam-solder-impl artifact [08:12:47] <jbossbot> git [solder] push master fe23c03.. Dan Allen Merge branch 'master' of github.com:seam/solder [08:12:47] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/06d4eeb...fe23c03 [08:28:22] *** mbg has left #seam-dev [09:33:40] <jbossbot> git [solder] push master 25dff5a.. Dan Allen update parent name; build combined normally [09:33:40] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/fe23c03...25dff5a [09:46:36] <jbossbot> git [solder] push master 2c2f9d1.. Dan Allen rename Producers to LoggerProducers [09:46:36] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/25dff5a...2c2f9d1 [09:54:28] <jbossbot> git [solder] push master 5ad5a08.. Dan Allen SOLDER-35 - Remove slf4j usage from Solder API [09:54:29] <jbossbot> jira [SOLDER-35] Remove slf4j usage from weldx [Resolved, Major, Shane Bryzak] https://issues.jboss.org/browse/SOLDER-35 [09:54:30] <jbossbot> git [solder] push master 1caaa4e.. Dan Allen skip test phase in combined module [09:54:30] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/2c2f9d1...1caaa4e [10:31:58] <jbossbot> git [solder] push master 9698957.. Dan Allen SOLDER-10 jboss-logging as compile scope [10:31:59] <jbossbot> jira [SOLDER-10] To run arquillian tests jboss-logging must be explicitly stated as a dependency of the project [Open, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-10 [10:31:59] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/1caaa4e...9698957 [10:32:52] <jbossbot> git [solder] push master d6edfa8.. Dan Allen SOLDER-38 document pre-servlet 3.0 config... [10:32:53] <jbossbot> jira [SOLDER-38] Document that ResourceListener needs to be registered manually in pre-servlet 3.0 environments [Open, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-38 [10:32:53] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/9698957...d6edfa8 [12:26:14] *** stuartdouglas has quit IRC [12:28:11] *** stuartdouglas has joined #seam-dev [14:01:03] *** aslak has joined #seam-dev [14:01:05] *** aslak has quit IRC [14:01:05] *** aslak has joined #seam-dev [16:02:20] *** clerum has joined #seam-dev [16:31:39] *** mbg has joined #seam-dev [16:46:03] *** lightguard_jp has joined #seam-dev [16:55:05] *** lightguard_jp has quit IRC [17:56:44] *** lightguard_jp has joined #seam-dev [17:57:13] *** lightguard_jp has quit IRC [17:57:41] *** lightguard_jp has joined #seam-dev [18:25:25] *** clerum has quit IRC [19:12:07] *** clerum has joined #seam-dev [21:36:24] *** mojavelinux has quit IRC [22:30:23] <jbossbot> git [js-remoting] push master d00897f.. Amir added a new feature to validate the whole object graph automatically and fixed a couple of bugs. [22:30:23] <jbossbot> git [js-remoting] push master 9d258ed.. Amir modified the validation API according to Shane's suggestion in order to improve usability and simplicity... [22:30:23] <jbossbot> git [js-remoting] push master URL: http://github.com/seam/js-remoting/compare/2ab359e...9d258ed [22:46:09] <jbossbot> git [solder] push master 197d988.. Dan Allen SOLDER-15 utility to box and unbox primitive types [22:46:11] <jbossbot> jira [SOLDER-15] Provide a utility to transparently wrap primitive types [Open, Minor, Dan Allen] https://issues.jboss.org/browse/SOLDER-15 [22:46:11] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/d6edfa8...197d988 [22:49:56] <jbossbot> git [solder] push master e56ac77.. Dan Allen SOLDER-15 docs [22:49:56] <jbossbot> jira [SOLDER-15] Provide a utility to transparently wrap primitive types [Open, Minor, Dan Allen] https://issues.jboss.org/browse/SOLDER-15 [22:49:56] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/197d988...e56ac77 [23:04:49] *** lightguard_jp has joined #seam-dev [23:13:18] <jbossbot> git [solder] push master ecfd7b7.. Dan Allen fix typos [23:13:18] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/e56ac77...ecfd7b7 [23:18:41] *** lightguard_jp has quit IRC [23:32:54] <jbossbot> git [solder] push master 2c03d65.. Dan Allen Merge branch 'SOLDER-27' of https://github.com/stuartwdouglas/solder into stuartwdouglas-SOLDER-27 [23:32:55] <jbossbot> jira [SOLDER-27] Allow generic beans to be configured via any class type not just annotations [Resolved, Major, Stuart Douglas] https://issues.jboss.org/browse/SOLDER-27 [23:32:55] <jbossbot> git [solder] push master 420dc99.. Dan Allen fix typo [23:32:56] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/ecfd7b7...420dc99 [23:39:09] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/420dc99...ecfd7b7 [23:42:25] *** clerum has quit IRC [23:49:08] <jbossbot> git [solder] push master a24bf66.. Stuart Douglas SOLDER 7, SOLDER-27... [23:49:08] <jbossbot> jira [SOLDER-27] Allow generic beans to be configured via any class type not just annotations [Resolved, Major, Stuart Douglas] https://issues.jboss.org/browse/SOLDER-27 [23:49:09] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/ecfd7b7...a24bf66 [23:50:01] <jbossbot> git [solder] push master bde02ff.. Dan Allen fix grammar [23:50:01] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/a24bf66...bde02ff