[00:04:15] <alesj> @sbryzak: if it's some CL issue, let me know [00:04:26] <alesj> and we can get it fixed for 6.0.1 [00:04:36] <sbryzak> alesj: i worked it out, it was because there were multiple jars in the archive [00:04:42] <sbryzak> seam-solder jars [00:04:50] <alesj> so, classic CCE? [00:05:02] *** lincolnthree has left #seam-dev [00:05:30] <alesj> or, it would have been if it wasn't for the check [00:05:31] <sbryzak> well, the error message was a little ambiguous [00:05:49] <alesj> yeah, not like weld-821 ;-) [00:06:20] <sbryzak> not any more :) [00:13:36] <oranheim> hi all [00:13:55] <oranheim> I've fixed an unreported issue with Seam Wicket [00:14:38] <oranheim> added a SeamWicketTester bean, so it can be injected into Arquillian tests in order to perform Wicket Page/Component testing [00:15:14] <oranheim> When reading through Getting Started Development, I could not find how to make a patch with Git (http://seamframework.org/Community/GettingStartedDevelopingTheSeamFramework) [00:15:37] <oranheim> What would be the right procedure to submit a patch? [00:16:04] <oranheim> pls help [00:16:36] <aslak> oranheim, fork the repo, make a topic branch in your fork where you do the changes, then do a pull request to the upstream repo [00:17:03] <oranheim> hmm.. I'm used to working with svn, but not git [00:17:24] <alesj> oranheim: http://progit.org/book/ [00:17:32] <alesj> very useful reading [00:17:38] <oranheim> thx [00:17:54] <alesj> np [00:18:08] <oranheim> btw, as the SeamWicketTester belongs to a mock up api [00:18:36] <oranheim> i added a submodule of seam-wicket, and named the artifact: seam-wicket-mock [00:18:55] <oranheim> this would for e.g. the NumberGuess example become a new dependency [00:19:02] <oranheim> what naming convention would be right here? [00:20:41] <aslak> oranheim, http://seamframework.org/Weld/GuidelinesForWeldDevelopment has some info on how it is done for Weld, Seam3 follow a lot of the same.. [00:20:43] <sbryzak> oranheim: for the artifact? [00:22:28] <oranheim> <parent> [00:22:28] <oranheim> <groupId>org.jboss.seam.wicket</groupId> [00:22:28] <oranheim> <artifactId>seam-wicket-parent</artifactId> [00:22:28] <oranheim> <version>3.0.0-SNAPSHOT</version> [00:22:28] <oranheim> <relativePath>../pom.xml</relativePath> [00:22:28] <oranheim> </parent> [00:22:28] <oranheim> <artifactId>seam-wicket-mock</artifactId> [00:22:29] <oranheim> <packaging>jar</packaging> [00:24:49] <sbryzak> oranheim: seam-wicket-mock seems reasonable for the artifact name [00:25:19] <oranheim> good [00:25:46] <oranheim> In wicket test case, you can just do an @Inject SeamWicketTester and you're all good [00:26:15] <oranheim> I'm writing a few test cases lacking for the number guess, so the example requires some restructuring to get it work [00:26:55] <oranheim> btw, I've written a CRUD Wicket based app with Seam Solder and -> Scala <- :) [00:27:26] <sbryzak> sweet, i've been meaning to find some time to play around with scala some more [00:28:18] <oranheim> It implements a super simple blog, not intended to be much more than making a show case of Wicket CRUDs.. This is part of me learning Scala.. Would this be interesting as an example for JBoss? If so, I can add it too after committing the first ptach [00:28:34] <oranheim> Scala, CDI, Wicket, Arquillian.. [00:28:48] <sbryzak> certainly, i would put it in wicket/examples [00:31:41] <oranheim> Sorry for spamming this dev group, but have a look at this: [00:31:51] <oranheim> @RunWith(value = classOf[Arquillian]) [00:31:51] <oranheim> class Scala2Test { [00:31:51] <oranheim> [00:31:51] <oranheim> @Inject [00:31:51] <oranheim> var log: Logger = _ [00:31:51] <oranheim> [00:31:51] <oranheim> @Inject [00:31:52] <oranheim> var sorter: SortBean = _ [00:31:52] <oranheim> [00:31:53] <oranheim> @Test [00:31:53] <oranheim> def testLog() { [00:31:54] <oranheim> Assert.assertNotNull( log ) [00:32:05] <oranheim> a.foreach { [00:32:06] <oranheim> i => log.info(" --> " + i) [00:32:07] <oranheim> } [00:32:08] <oranheim> } [00:32:09] <oranheim> [00:32:10] <oranheim> } [00:32:11] <oranheim> object Scala2Test { [00:32:12] <oranheim> [00:32:13] <oranheim> @Deployment [00:32:14] <oranheim> def createTestArchive():Archive[_] = { [00:32:15] <oranheim> return ShrinkWrap.create(classOf[WebArchive], "test.war") [00:32:16] <oranheim> .addClasses(classOf[SortBean]) [00:32:17] <oranheim> .addWebResource("test-persistence.xml", "classes/META-INF/persistence.xml") [00:32:18] <oranheim> .addWebResource("test-jetty-env.xml", "jetty-env.xml") [00:32:18] <sbryzak> oranheim: better to use pastebin for code [00:32:19] <oranheim> .addWebResource(EmptyAsset.INSTANCE, ArchivePaths.create("beans.xml")) [00:32:20] <oranheim> .setWebXML("test-web.xml"); [00:32:21] <oranheim> } [00:32:22] <oranheim> } [00:32:23] <oranheim> Kind of cool isn't it ! [00:32:39] <oranheim> http://pastebin.com/rQ4UrRYe [00:32:56] <oranheim> Class to implement test methods [00:33:07] <oranheim> Object to handle Deployment with ShrinkWrap [00:33:08] <aslak> been thinking of doin some arquillian scala integration.. [00:33:36] <oranheim> it pretty much work fine for me, so far.. I have only been doing pretty simple stuff though [00:33:50] <oranheim> Fantastic language must say [00:36:32] <jbossbot> git [config] push master 3ac73cc.. Shane Bryzak Merge remote branch 'upstream/master'... [00:36:32] <jbossbot> git [config] push master URL: http://github.com/seam/config/compare/6e345f2...3ac73cc [00:37:54] <jbossbot> git [config] push master 34bcb88.. Shane Bryzak use combined jar for dependency [00:37:54] <jbossbot> git [config] push master URL: http://github.com/seam/config/compare/3ac73cc...34bcb88 [00:43:32] *** mbg has quit IRC [00:44:32] *** alesj has left #seam-dev [00:53:36] <jbossbot> git [solder] push master 0101819.. Shane Bryzak add constructor check to avoid NPE [00:53:36] <jbossbot> git [solder] push master a661ba8.. Shane Bryzak fix NPE [00:53:36] <jbossbot> git [solder] push master 041268b.. Shane Bryzak Merge remote branch 'upstream/master' [00:53:37] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/3412010...041268b [01:10:36] *** jganoff has quit IRC [01:14:12] *** aslak has quit IRC [01:20:54] *** rruss has quit IRC [01:25:26] <sbryzak> bah, i'm getting the Invalid bundle interface exception again from jboss-logging [01:25:45] <sbryzak> it seems to happen whenever an extension throws an exception [01:29:17] *** mbg has joined #seam-dev [01:29:17] *** mbg has quit IRC [01:29:17] *** mbg has joined #seam-dev [01:31:33] *** tsurdilo has quit IRC [01:58:05] *** cbrock has quit IRC [04:10:44] <jbossbot> git [solder] push master ec24315.. Dan Allen SOLDER-60 go full in on the camelcase package [04:10:45] <jbossbot> jira [SOLDER-60] servicehandler package should be serviceHandler for consistency [Closed, Major, Dan Allen] https://issues.jboss.org/browse/SOLDER-60 [04:10:45] <jbossbot> git [solder] push master c553798.. Dan Allen Merge branch 'master' of github.com:seam/solder [04:10:45] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/041268b...c553798 [04:24:52] *** alazarot has quit IRC [04:54:27] *** mbg has quit IRC [07:18:23] *** oskutka has joined #seam-dev [08:10:56] *** clerum1 has joined #seam-dev [08:12:47] *** clerum has quit IRC [08:14:59] *** clerum1 has quit IRC [08:38:33] *** aslak has joined #seam-dev [08:38:33] *** aslak has quit IRC [08:38:33] *** aslak has joined #seam-dev [08:56:06] *** adamw1pl has joined #seam-dev [09:02:21] *** mgencur has joined #seam-dev [09:03:49] *** aslak has quit IRC [09:04:41] *** aslak has joined #seam-dev [09:07:59] *** aslak has quit IRC [09:08:41] *** aslak has joined #seam-dev [09:43:43] *** sannegrinovero has quit IRC [09:54:59] *** marekn has joined #seam-dev [09:59:50] *** epbernard has joined #seam-dev [09:59:50] *** epbernard is now known as emmanuel [10:06:09] *** aslak has quit IRC [10:06:42] *** aslak has joined #seam-dev [10:06:47] *** oranheim has quit IRC [10:09:12] *** oranheim has joined #seam-dev [10:36:15] *** jose_freitas_afk has quit IRC [10:40:13] *** jose_freitas_afk has joined #seam-dev [10:52:32] *** jharting has joined #seam-dev [10:52:53] *** sannegrinovero has joined #seam-dev [11:11:53] *** jose_freitas_afk is now known as jose_freitas [11:13:03] *** koentsje has joined #seam-dev [11:31:27] *** sbryzak has quit IRC [11:36:18] *** pmuir has joined #seam-dev [11:38:20] *** alesj has joined #seam-dev [11:42:34] *** emmanuel has quit IRC [11:44:51] *** sbryzak has joined #seam-dev [11:46:58] *** akazakov has joined #seam-dev [12:09:30] *** epbernard has joined #seam-dev [12:09:30] *** epbernard is now known as emmanuel [12:25:00] *** maxandersen has joined #seam-dev [12:27:55] *** arbi has quit IRC [12:33:31] *** pmuir has quit IRC [13:00:19] *** kpiwko has joined #seam-dev [13:03:54] *** pmuir has joined #seam-dev [13:03:54] *** pmuir has quit IRC [13:03:54] *** pmuir has joined #seam-dev [13:48:15] *** maxandersen has quit IRC [14:13:46] *** maxandersen has joined #seam-dev [14:26:17] <oranheim> Where do I find the 'eclipse-code-formatter-profile.xml'? (http://seamframework.org/Community/GettingStartedDevelopingTheSeamFramework#H-CodeStyleGuidelines) [14:28:55] <oranheim> no worries, found it under seam/build.. [14:51:33] *** adamw1pl has quit IRC [14:59:08] *** oranheim has left #seam-dev [15:09:24] *** maxandersen has quit IRC [15:09:50] *** lazarotti has joined #seam-dev [15:14:22] *** rruss has joined #seam-dev [15:15:23] *** oranheim has joined #seam-dev [15:27:11] *** mbg has joined #seam-dev [15:27:18] *** mbg has quit IRC [15:27:18] *** mbg has joined #seam-dev [15:32:11] *** kpiwko has quit IRC [15:36:43] *** kpiwko has joined #seam-dev [15:49:28] *** lightguard_jp has joined #seam-dev [15:50:09] *** jharting has quit IRC [16:06:31] *** aslak has quit IRC [16:07:23] *** aslak has joined #seam-dev [16:08:05] *** aslak has quit IRC [16:09:20] *** clerum has joined #seam-dev [16:27:25] <marekn> all: does anybody know, what was the main reason for Maven 3 requirement for Seam 3 and Weld? [16:35:18] *** tsurdilo has joined #seam-dev [16:36:35] <marekn> pmuir: ping ^^^ [16:40:13] <pmuir> marekn: because of the improvements in import scope [16:41:11] <marekn> pmuir: so it is related to BOM, right? [16:41:18] <pmuir> yes [16:41:27] <marekn> pmuir: ok, thanks [16:43:55] *** jganoff has joined #seam-dev [16:44:23] *** aslak has joined #seam-dev [16:51:36] *** clerum has quit IRC [16:51:38] *** clerum1 has joined #seam-dev [16:55:15] *** jharting has joined #seam-dev [16:59:36] *** adamw1pl has joined #seam-dev [17:07:48] *** pmuir has quit IRC [17:17:06] <lazarotti> ping marekn [17:17:08] *** shervin has quit IRC [17:17:09] *** tsurdilo has quit IRC [17:17:17] <marekn> lazarotti: pong [17:17:28] *** tsurdilo has joined #seam-dev [17:18:15] <lazarotti> marekn: hello Marek, sorry, I'll commit the fix for jira 4744 today [17:18:52] <marekn> lazarotti: great, no problem as I wrote [17:19:24] <lazarotti> marekn: i ran the testall and had some problems with integration tests [17:19:45] <lazarotti> marekn: but before i apply a patch [17:19:56] <marekn> lazarotti: what sort? related to your change? [17:20:00] *** kpiwko has quit IRC [17:20:30] <lazarotti> marekn: no, before I change anything [17:20:37] <lazarotti> sorry after [17:20:37] <marekn> lazarotti: I see, and have you resolved them? [17:20:45] <marekn> lazarotti: :-) [17:20:48] <lazarotti> :) [17:21:58] <lazarotti> marekn: i'm looking, but has no connection with the fix [17:22:28] <lazarotti> marekn: i 'm running again, without the fix [17:23:14] <marekn> lazarotti: ok, just let me know if you get failures which you don't understand ;-) [17:27:36] *** mgencur has left #seam-dev [17:29:04] *** adamw1pl has quit IRC [17:33:12] *** marekn has quit IRC [17:39:30] *** oskutka has quit IRC [17:48:22] *** pmuir has joined #seam-dev [18:06:37] <lazarotti> marekn: well, the problem is my Eclipse. Running by console i have a sucess rate of 99.39% [18:08:30] <lazarotti> marekn: the tests that failed are testAsynchronous (from TestCase Quartz) and testTodo (from TestCase TodoList) [18:10:33] *** clerum1 has quit IRC [18:10:52] *** clerum has joined #seam-dev [18:23:22] *** pmuir has quit IRC [18:27:11] *** alesj has left #seam-dev [19:09:06] *** clerum has quit IRC [19:09:35] *** clerum has joined #seam-dev [19:10:48] *** sannegrinovero has quit IRC [19:14:30] *** kpiwko has joined #seam-dev [19:23:07] *** mbg has quit IRC [19:43:02] *** jganoff has quit IRC [19:51:52] *** tsurdilo1 has joined #seam-dev [19:54:25] *** tsurdilo has quit IRC [19:55:37] *** lincolnthree has joined #seam-dev [19:56:07] *** lincolnthree has left #seam-dev [20:06:53] *** sannegrinovero has joined #seam-dev [20:08:31] *** emmanuel has quit IRC [20:16:14] *** jharting1 has joined #seam-dev [20:18:35] *** jharting has quit IRC [20:20:55] <jbossbot> git [forge] push master 3483845.. Lincoln Baxter, III addid starter plugin development tutorial to the user-guide [20:20:55] <jbossbot> git [forge] push master URL: http://github.com/seam/forge/compare/1f28960...3483845 [20:35:22] <jbossbot> git [faces] push master 432b8ad.. Dan Allen SEAMFACES-63 additional cleanups/alignments... [20:35:24] <jbossbot> jira [SEAMFACES-63] Create a JSF bridge to Seam Catch [Resolved, Major, Jason Porter] https://issues.jboss.org/browse/SEAMFACES-63 [20:35:24] <jbossbot> git [faces] push master URL: http://github.com/seam/faces/compare/817e435...432b8ad [20:35:37] *** epbernard has joined #seam-dev [20:35:37] *** epbernard is now known as emmanuel [20:40:38] *** koentsje has quit IRC [20:43:00] *** emmanuel has quit IRC [21:01:28] *** marekn has joined #seam-dev [21:13:29] *** oskutka has joined #seam-dev [21:16:58] *** mbg has joined #seam-dev [21:16:58] *** mbg has quit IRC [21:16:58] *** mbg has joined #seam-dev [21:20:17] *** jose_freitas is now known as jose_freitas_afk [21:23:06] *** oskutka has quit IRC [21:28:34] *** egore911 has joined #seam-dev [21:32:17] <egore911> hi! I've read somewhere (don't remember where, sorry) that seam 3 will not ship own jsf components. does this mean I have to use richfaces (or similar) instead? I really love the simplicity of s:fileUpload and don't like rich:fileUpload [21:40:29] <jbossbot> git [rest] push master bd15a6d.. Jozef Hartinger Upgraded to new parent & bom [21:40:29] <jbossbot> git [rest] push master e3e799e.. Jozef Hartinger SEAMREST-12 SEAMREST-15 SEAMREST-16 and a lot of other changes [21:40:29] <jbossbot> jira [SEAMREST-12] Upgrade to Seam Catch Alpha3 [Open, Major, Jozef Hartinger] https://issues.jboss.org/browse/SEAMREST-12 [21:40:30] <jbossbot> jira [SEAMREST-15] Adapt to WELD-796 [Open, Blocker, Jozef Hartinger] https://issues.jboss.org/browse/SEAMREST-15 [21:40:31] <jbossbot> jira [WELD-796] ProcessAnnotatedType is fired for annotated types created during ProcessAnnotatedType [Closed, Major, Pete Muir] https://issues.jboss.org/browse/WELD-796 [21:40:32] <jbossbot> jira [SEAMREST-16] Move jaxrs example from Catch to REST [Open, Major, Jozef Hartinger] https://issues.jboss.org/browse/SEAMREST-16 [21:40:32] <jbossbot> git [rest] push master 5ba8265.. Jozef Hartinger Updated docs [21:40:32] <jbossbot> git [rest] push master cca4f1e.. Jozef Hartinger SEAMREST-16 [21:40:33] <jbossbot> git [rest] push master 7899c41.. Jozef Hartinger Updated seam-tasks example [21:40:33] <jbossbot> git [rest] push master a81f2eb.. Jozef Hartinger minor [21:40:33] <jbossbot> git [rest] push master cd0e4b0.. Jozef Hartinger added release notes [21:40:33] <jbossbot> git [rest] push master 9eb1a55.. Jozef Hartinger Merge branch 'master' of git://github.com/jharting/seam-rest [21:40:34] <jbossbot> git [rest] push master URL: http://github.com/seam/rest/compare/8ddf367...9eb1a55 [21:46:59] *** marekn has quit IRC [21:54:05] *** cbrock has joined #seam-dev [22:00:44] *** marekn has joined #seam-dev [22:08:47] *** bleathem has joined #seam-dev [22:46:28] *** kpiwko has quit IRC [22:52:43] *** marekn has left #seam-dev [23:24:52] *** akazakov has quit IRC [23:43:37] *** egore911 has quit IRC [23:46:39] *** jharting1 has left #seam-dev