fluid-work IRC Logs-2010-05-13

[02:41:01 EDT(-0400)] * denbuzze (~anonymous@ginger.caret.cam.ac.uk) has joined #fluid-work
[03:48:21 EDT(-0400)] * JASIGLogBot (~PircBot@jasig.Princeton.EDU) has joined #fluid-work
[03:48:21 EDT(-0400)] * Topic is 'This channel is logged – for details see: http://wiki.fluidproject.org/display/fluid/IRC+Channel' set by jessm on 2009-11-04 08:30:00 EST(-0500)
[04:18:22 EDT(-0400)] * jamon (jamon@mantis.openject.com) has joined #fluid-work
[07:02:51 EDT(-0400)] * michelled (~michelled@CPE001310472ade-CM0011aefd3ca8.cpe.net.cable.rogers.com) has joined #fluid-work
[08:10:55 EDT(-0400)] * Justin_o (~Justin@142.150.154.171) has joined #fluid-work
[08:48:42 EDT(-0400)] * jessm (~Jess@c-71-232-3-151.hsd1.ma.comcast.net) has joined #fluid-work
[09:21:59 EDT(-0400)] * michelled (~michelled@CPE001310472ade-CM0011aefd3ca8.cpe.net.cable.rogers.com) has joined #fluid-work
[09:22:01 EDT(-0400)] * kasper (~kasper@189.130.67.157) has joined #fluid-work
[09:22:26 EDT(-0400)] * colinclark (~colin@bas2-toronto09-2925239674.dsl.bell.ca) has joined #fluid-work
[09:45:53 EDT(-0400)] * anastasiac (~team@142.150.154.193) has joined #fluid-work
[10:13:04 EDT(-0400)] * athena (~athena@adsl-99-90-242-49.dsl.wlfrct.sbcglobal.net) has joined #fluid-work
[10:54:23 EDT(-0400)] * denbuzze (~anonymous@ginger.caret.cam.ac.uk) has joined #fluid-work
[11:07:03 EDT(-0400)] <Justin_o> colinclark: i've looked at the decapod repo stuff a bit today... i managed to revert the changes I had made to get the unit tests working and it appears that something in the changes I had made broke something in the mockserver
[11:08:27 EDT(-0400)] <Justin_o> colinclark: so i'm not entirely sure where to go from here... further investigation is needed, but i'm suspecting that either my change was wrong, the unit test was wrong, or the mockserver is making a wrong assumption... at any rate it's probable that the server and unit tests are out of sync in their expectations... so should i revert my changes and put this up on the googlecode site or try to fix the problem before doing that
[11:09:47 EDT(-0400)] <colinclark> I'd say the former
[11:09:50 EDT(-0400)] <colinclark> Always working code
[11:10:31 EDT(-0400)] <colinclark> Justin_o: That way, you'll also get some sense of accomplishment, having completed the migration to hg fully
[11:10:50 EDT(-0400)] <colinclark> Does that seem reasonable?
[11:11:38 EDT(-0400)] <Justin_o> colinclark: thanks.. that makes sense... it seems the tests could use a bunch of work anyways and it will probably be better to have their updates tracked on the googlecode site
[11:11:48 EDT(-0400)] <colinclark> yep
[11:12:03 EDT(-0400)] <colinclark> In the end, we're going to try to get rid of the mock server anyway
[11:12:20 EDT(-0400)] <colinclark> So we might be able to approach it from that angle tomorrow
[11:12:25 EDT(-0400)] <Justin_o> okay...
[11:12:36 EDT(-0400)] <Justin_o> that would be good
[11:31:29 EDT(-0400)] <anastasiac> colinclark, will you be joining stand-up?
[11:31:39 EDT(-0400)] <colinclark> anastasiac: yes indeed
[11:58:38 EDT(-0400)] * elicochran (~elicochra@dhcp-169-229-212-50.LIPS.Berkeley.EDU) has joined #fluid-work
[12:10:20 EDT(-0400)] * michelled (~michelled@142.150.154.101) has joined #fluid-work
[12:18:41 EDT(-0400)] * colinclark (~colin@142.150.154.101) has joined #fluid-work
[12:52:54 EDT(-0400)] <Justin_o> athena: hello, do you have time for a maven question
[12:53:59 EDT(-0400)] <athena> i'm about to get on an I2 call about uportal and grouper
[12:54:02 EDT(-0400)] <athena> though you can ask (smile)
[12:54:49 EDT(-0400)] <athena> probably be able to chat a bit on and off in the background, and it doens't start for a few
[12:55:13 EDT(-0400)] <Justin_o> athena: thanks... (smile)
[12:55:30 EDT(-0400)] <Justin_o> just wondering if you are able to read in properties from an external properties file in maven
[12:55:43 EDT(-0400)] <athena> depends on exactly what you're tryign to do
[12:55:50 EDT(-0400)] <athena> i've used properties files in the past as filters
[12:55:55 EDT(-0400)] <athena> and you can of course set up profiles
[12:56:34 EDT(-0400)] <Justin_o> athena: what exactly are profiles
[12:56:56 EDT(-0400)] <athena> i guess you could think of them as build configurations
[12:57:14 EDT(-0400)] <athena> so if you pass in different profiles, the maven build might behave differently
[12:57:22 EDT(-0400)] <Justin_o> basically what i want to do is have a place where all of the properties are set...
[12:57:25 EDT(-0400)] <athena> you can use them to do things like set extra repositories, or modify default properties
[12:57:43 EDT(-0400)] <Justin_o> athena: ah... i think that's what i want... to be able to easily modify default properties
[12:57:50 EDT(-0400)] <athena> what are you using the properties for?
[12:58:03 EDT(-0400)] <Justin_o> for example the location where to deploy a file...
[12:58:11 EDT(-0400)] <athena> sounds like a really good match
[12:58:22 EDT(-0400)] <athena> so typically you might have a property like "maven.tomcat.home" or something like that
[12:58:36 EDT(-0400)] <athena> you could define it in a profile or on the command line or whatever
[12:58:40 EDT(-0400)] <athena> http://maven.apache.org/guides/introduction/introduction-to-profiles.html
[12:59:45 EDT(-0400)] <Justin_o> athena: thanks a lot... one last question... when you are using maven to drive ant and there is a property in ant that i might want to be able to change with these profiles... is that possible/
[13:00:09 EDT(-0400)] <athena> i actually haven't really used the antrun plugin so i'm not sure
[13:00:15 EDT(-0400)] <athena> i would hope that it is though
[13:00:27 EDT(-0400)] <Justin_o> athena: thanks... i'll dig around...
[13:00:37 EDT(-0400)] <athena> let me know when you find out, if you dont' mind (smile)
[13:01:16 EDT(-0400)] <Justin_o> athena: sure will do... although i used the maven exec plugin to trigger ant... but i'll look at the antrun one too in case it gives me more options
[13:01:41 EDT(-0400)] <athena> yeah, i think both are plausible options, but i haven't used either so i can't really speak to the benefits of either one
[13:01:47 EDT(-0400)] <athena> really need to catch up on that
[13:04:40 EDT(-0400)] <athena> ok, back in a bit
[13:27:43 EDT(-0400)] * denbuzze (~anonymous@cpc1-cmbg7-0-0-cust61.cmbg.cable.ntl.com) has joined #fluid-work
[13:29:59 EDT(-0400)] <athena> Justin_o: i think i'm back, if you've got any other questions
[13:33:41 EDT(-0400)] * athena7 (~athena@adsl-99-97-29-187.dsl.wlfrct.sbcglobal.net) has joined #fluid-work
[13:33:51 EDT(-0400)] <Justin_o> athena: thanks... i think i'm okay at the moment... but will let you know if anything comes up
[13:33:57 EDT(-0400)] <athena7> cool (smile)
[14:28:21 EDT(-0400)] * michelled_ (~michelled@142.150.154.101) has joined #fluid-work
[16:40:16 EDT(-0400)] <Justin_o> kasper: I'm going to send a message to the cspace work list soon with some more build scripts...
[16:40:33 EDT(-0400)] <kasper> ahh very nicew
[16:40:41 EDT(-0400)] <kasper> s/w//
[16:40:49 EDT(-0400)] <Justin_o> kasper: thanks
[16:41:38 EDT(-0400)] <kasper> justin_o: I'll start punking the teams to get the scripts tested and included in their repos (smile)
[16:41:49 EDT(-0400)] <Justin_o> kasper: thanks...
[16:47:38 EDT(-0400)] <Justin_o> kasper: i've sent it out... hopefully it reads okay...
[16:49:07 EDT(-0400)] <kasper> Justin_o: awesome! thank you so much for fixing these scripts
[16:54:56 EDT(-0400)] <Justin_o> kasper: np, glad to help.. i hope they work properly (smile)
[17:31:28 EDT(-0400)] * anastasiac (~team@142.150.154.193) has left #fluid-work