[jbehave-dev] Re: @AfterStory

2010-02-22 Thread Mauro Talevi
Hi Cristiano, If I understand correctly, you want to run the methods annotated by @Before/AfterStory depending on whether the story is an embedded one or not, i.e. @BeforeStory(uponEmbedded=true) public void beforeEmbeddedStory(){ // ... } @BeforeStory(uponEmbedded=false) public void

Re: [jbehave-dev] examples

2010-02-22 Thread Mauro Talevi
Following works fine on my side: svn checkout https://svn.codehaus.org/jbehave/trunk/core cd core mvn clean install -Pexamples with svn 1.5.6 (r36142) Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200) Java version: 1.6.0_17 What error are you getting? What version of svn, java and mvn?

[jbehave-dev] Re: examples

2010-02-23 Thread Mauro Talevi
On 23/02/2010 22:39, qa tester wrote: Thanks. I am able to deploy the web runner now. The issue I came across now is that when I run the example scenario, I do not think that the scenario completes. Which scenario are your using? The one referenced in

Re: [jbehave-dev] Re: examples

2010-02-23 Thread Mauro Talevi
On 24/02/2010 00:24, qa tester wrote: ok. i no longer see the NOT PERFORMED messages. however, there is nothing definitive either that says that it is passed. is that expected? is there any other logging that would show that the scenario was run? What is displayed on the bottom panel is the

Re: [jbehave-dev] Re: examples

2010-02-25 Thread Mauro Talevi
On 24/02/2010 23:37, qa tester wrote: cool. what are the plans for this webrunner? is this going to be a tool that can be used to manage and run the stories/scenarios? i havent had much chance to investigate further, but if the scenarios run include opening browsers, will this web runner

[jbehave-dev] JBehave 2.5 released

2010-03-09 Thread Mauro Talevi
The team is happy to announce the release of JBehave 2.5. Announcement: http://jbehave.org/2010/03/09/jbehave-2-5-released/ Release note: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10680version=15850 Download: http://jbehave.org/download Reference:

Re: [jbehave-dev] JBehave 2.5 presentation and code samples

2010-04-13 Thread Mauro Talevi
Hi Brian, thanks for sharing your presentation and feedback on JBehave. I found it quite an accurate representation of the features. With reference to your Cons: - jbehave-core jar bundles other libraries . Freemarker, Apache Commons collections, ioand lang This is an oversight and certainly

Re: [jbehave-dev] Selenium/JBehave Help

2010-05-21 Thread Mauro Talevi
Just create a JIRA issue at https://jira.codehaus.org/browse/JBEHAVE and attach zip with src. On 21/05/2010 15:47, Tom Little wrote: Hi Mauro, Thanks for the quick response. I've sent an email to the user list as suggested. Sure I can give you a sample of the project, what is the best way

Re: [jbehave-dev] Debugging JBehave tests

2010-07-06 Thread Mauro Talevi
Hi Mike, we would surely welcome an alternative parser. The architecture allows for alternative impls and as long as there is no tie-in with an IDE to can go in core. For anything that requires a specific IDE, we'd create a separate module. Could you please create a new JIRA issue with a

Re: [jbehave-dev] running the same scenario on different browsers using selenium

2010-07-07 Thread Mauro Talevi
Hi Rob, SeleniumSteps is just a utility class, but you are not forced to inherit from it. Nothing stops you from creating your own instance of Selenium in your steps: public class MySteps(){ private Selenium selenium; @Given(the browser is browser) public void

Re: [jbehave-dev] Rendered reports are kind of sparse...

2010-07-08 Thread Mauro Talevi
Hi Rob, for now the report resources need to be manually added to the rendered directory. The trader example (either the build.xml or pom.xml) shows you how to do it: https://svn.codehaus.org/jbehave/trunk/core/examples/trader/ Cheers On 08/07/2010 17:56, r.day...@yelladworks.com wrote: I've

Re: [jbehave-dev] Re: Some tests failed on Windows

2010-08-02 Thread Mauro Talevi
Phil, not able to reproduce your problem on Windows, using same version of mvn and jdk. The slashes are normalised on purpose to /, which java understands and convertes accordingly to the appropriate file separator. I suspect your problem may be due to spaces in the file path you checked out

Re: [jbehave-dev] Re: Some tests failed on Windows

2010-08-03 Thread Mauro Talevi
best to get it removed all together or to remove the content of it. Could you try clone jbehave-core.git ? Cheers On 03/08/2010 07:56, phil wrote: On 02.08.2010 21:44, phil wrote: Hi Mauro Mauro Talevi mauro.tal...@... writes: The slashes are normalised on purpose to /, which

Re: [jbehave-dev] Re: Some tests failed on Windows

2010-08-03 Thread Mauro Talevi
On 03/08/2010 11:43, phil wrote: Mauro, On 03.08.2010 11:08, Mauro Talevi wrote: Phil, I suspect you clone the wrong repo. The jbehave core repo is: git://git.codehaus.org/jbehave-core.git Indeed ;-) The old one git://git.codehaus.org/jbehave-git.git was used

Re: [jbehave-dev] Binary Distribution Missing JAR Files?

2010-08-07 Thread Mauro Talevi
Hi Alistair, On 07/08/2010 14:55, Alistair McKinnell wrote: Is the /Core 3.0-rc2/ /binary distribution/ download missing /JAR /files from the /lib/ directory? I'm downloading the distribution using this link:

[jbehave-dev] JBehave 3.0 released

2010-08-31 Thread Mauro Talevi
The team is happy to announce the release of JBehave 3.0. Announcement: http://jbehave.org/2010/08/31/jbehave-3-0-released/ Release note: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10680version=16302 Download: http://jbehave.org/download Reference:

[jbehave-dev] JBehave Web 3.0 released

2010-09-20 Thread Mauro Talevi
The team is proud to announce the release of JBehave Web 3.0. Announcement: http://jbehave.org/2010/09/20/jbehave-web-3-0-released/ Changelog: http://jira.codehaus.org/browse/JBEHAVE/fixforversion/15851 Download: http://jbehave.org/download Documentation: http://jbehave.org/documentation

Re: [jbehave-dev] Missing getter/setter on SpringStoryReporterBuilder

2010-09-23 Thread Mauro Talevi
Done: http://jira.codehaus.org/browse/JBEHAVE-346 On 23/09/2010 20:32, Peter Suggitt wrote: Hi Bit of boring one, but on SpringStoryReporterBuilder the getter/setter is missing from the SpringStoryReporterBuilder class for pathResolver. I am extending the class at the moment to work

Re: [jbehave-dev] TAG support in JBehave

2010-10-04 Thread Mauro Talevi
It's slated for next release (3.1): http://jira.codehaus.org/browse/JBEHAVE-220 On 04/10/2010 22:24, Tahir Raza wrote: Hello, We are following BDD in our projects and have been using Cucumber/Cuke4Duke stuff for past 3 months. We just started to implement JBehave and check its

Re: [jbehave-dev] TAG support in JBehave

2010-10-04 Thread Mauro Talevi
, 2010 at 4:26 PM, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: It's slated for next release (3.1): http://jira.codehaus.org/browse/JBEHAVE-220 On 04/10/2010 22:24, Tahir Raza wrote: Hello, We are following BDD in our projects

Re: [jbehave-dev] HtmlUnitDriver using FF javascript engine?

2010-10-18 Thread Mauro Talevi
of HtmlUnitDriver for you. Use your new subclass when you are setting up the rest of the JBehave initialization stuff. - Paul On Thu, Oct 14, 2010 at 3:57 AM, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Hi Tahir

Re: [jbehave-dev] Re: TAG support in JBehave

2010-10-19 Thread Mauro Talevi
Hi Brian, On 19/10/2010 16:58, Brian Repko wrote: Mauro, Looks AWESOME! Thanks - I'm quite pleased with how it's shaping up. We took our time, but I think we have quite a flexible and powerful tool to play with. Two items 1) for the sequence of meta filters - I'm assuming that filtering

Re: [jbehave-dev] Re: TAG support in JBehave

2010-10-20 Thread Mauro Talevi
On 20/10/2010 22:55, Tahir Raza wrote: This is my Scenario: Scenario: The objective of the test case is to verify that the 3rd Party product offerings page functions as expected. (PREPPOSFN01) Meta: @UseCase My first use case Given I access the site And I am an anonymous user When I

Re: [jbehave-dev] Re: TAG support in JBehave

2010-10-27 Thread Mauro Talevi
Tahir, re-sending as reply seems to have gotten lost in the ether :-) On 26/10/2010 22:23, Mauro Talevi wrote: Tahir, http://jbehave.org/reference/stable/running-examples.html In the trader example, the meta_filtering.story has meta info you can filter on. Try running the stories

Re: [jbehave-dev] Re: TAG support in JBehave

2010-10-27 Thread Mauro Talevi
it. Cheers On 26/10/2010 20:19, Tahir Raza wrote: I still cant get tags to work. Same error. Do you have a working example that I can download? Thanks Mauro! On Wed, Oct 20, 2010 at 5:54 PM, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: On 20/10/2010 22

Re: [jbehave-dev] Some little Ideas/Hints for Trader Example

2010-11-21 Thread Mauro Talevi
Hi Sven, On 20/11/2010 17:00, Sven Schäfer wrote: Hello, i actually try to understand jbehave ;-) ... so i read the document pages and download the examples. - the link on your page (http://jbehave.org/documentation/) to the examples is broken ;-( Thanks for pointer. URL fixed. For the

Re: [jbehave-dev] Question: GivenStories Path-Problem

2010-12-28 Thread Mauro Talevi
Hi Sven, can you please send a sample project that we can use to reproduce problem? The simplest possible project that shows the issue, buildable via Ant or Maven. Thanks On 28/12/2010 21:01, Sven Schäfer wrote: Hello, i wrote some stories and in one i use the GivenStories Keyword. My

Re: [jbehave-dev] Question: GivenStories Path-Problem

2010-12-30 Thread Mauro Talevi
Original-Nachricht Datum: Tue, 28 Dec 2010 21:06:05 +0100 Von: Mauro Talevi mauro.tal...@aquilonia.org An: dev@jbehave.codehaus.org Betreff: Re: [jbehave-dev] Question: GivenStories Path-Problem Hi Sven, can you please send a sample project that we can use to reproduce problem

Re: [jbehave-dev] Parsing Meta Info in Story files

2011-01-03 Thread Mauro Talevi
Yes, that is what story mapping is all about: http://jbehave.org/reference/stable/story-mapping.html You can added you custom tags to the Meta: section of your story and then create a map by filters of all your stories. Cheers On 03/01/2011 17:56, Tahir Raza wrote: Hello, We are trying to

Re: [jbehave-dev] Maven report success even if JBehave test fails

2011-01-26 Thread Mauro Talevi
Hi Jörgen, please try with 3.2-beta-4, as it contains fix for http://jira.codehaus.org/browse/JBEHAVE-407. On 26/01/2011 11:41, Jörgen Falk wrote: Hi we use a continuous integration server (Hudson) that runs our JBehave integration tests. The problem we have is to configure JBehave /

Re: [jbehave-dev] A discussion on some Parameter Conversion ideas...

2011-02-01 Thread Mauro Talevi
Hi Larry, the parameter conversion design of JBehave allows for many different implementations, even for the same Java type. So there is no problem in having a bespoke BooleanConverter that also does some textual pre-parsing conversion. Like-wise for the EnumConverter. In any case, it

Re: [jbehave-dev] Spring 3.0.5 Maven 3.0 integration - uses spring 2.5.6 transitively

2011-03-26 Thread Mauro Talevi
Peter, the jbehave-maven-plugin is not coupled with jbehave-spring. If you want to use Spring 3.0.5 instead of 2.5.6, all you need to do is use dependency management to override the transitive dependency. I've modified the trader-spring example pom.xml to show this in action.

Re: [jbehave-dev] Testing Swing with BDD

2011-03-26 Thread Mauro Talevi
Yep, that would be most welcome! On 26 Mar 2011, at 18:45, Cristiano Gavião cvgav...@gmail.com wrote: Hi Mauro, I could find a new version (1.1) of Tyburn in http://code.google.com/p/tyburn/ Unfortunately it isn't on any maven repo... Tyburn is a good tool, but for those that want to

Re: [jbehave-dev] Spring 3.0.5 Maven 3.0 integration - uses spring 2.5.6 transitively

2011-03-28 Thread Mauro Talevi
, Mauro Talevi wrote: Peter, the jbehave-maven-plugin is not coupled with jbehave-spring. If you want to use Spring 3.0.5 instead of 2.5.6, all you need to do is use dependency management to override the transitive dependency. I've modified the trader-spring example pom.xml to show

Re: [jbehave-dev] Spring 3.0.5 Maven 3.0 integration - uses spring 2.5.6 transitively

2011-03-28 Thread Mauro Talevi
Hi Peter, glad to hear you've got it all sorted. Cheers On 28/03/2011 17:16, Peter Suggitt wrote: Hi Mauro All sorted now thanks. All working correctly as it should do. Apologies for being thick headed about it all. On Mon, 2011-03-28 at 16:27 +0200, Mauro Talevi wrote: Peter

[jbehave-dev] JBehave Core 3.3 and Web 3.3 released

2011-04-02 Thread Mauro Talevi
All, the JBehave Team is happy to announce the release of Core 3.3 and Web 3.3: http://jbehave.org/2011/04/01/jbehave-3-3-released/ http://jbehave.org/2011/04/01/jbehave-web-3-3-released/ Cheers - To unsubscribe from this

Re: [jbehave-dev] A request to improve adoption

2011-05-13 Thread Mauro Talevi
Hi, the point of using Maven is that you don't need to build the jars, these are already available on Maven Central and will be automatically downloaded when you declare them in your pom.xml: http://repo2.maven.org/maven2/org/jbehave/jbehave-core/ If you don't use Maven, the binary distribution

Re: [jbehave-dev] A request to improve adoption

2011-05-13 Thread Mauro Talevi
The process is: 1. download bin distribution 2. unzip 3. cd lib 4. ant copy-dependencies Then you have all your dependencies (direct and transitive) and can use them manually with Ant however you see fit. To be honest I don't see the big difference with what you're proposing. We won't package

Re: [jbehave-dev] A request to improve adoption

2011-05-14 Thread Mauro Talevi
The only difference between what you propose and what we have is that you need to execute a one-off command - ant copy-dependencies - to retrieve the jars from the external repos. It's a philosophical issue more than anything else. Ant tends to favour the duplication (and storage) of jars left

Re: [jbehave-dev] A request to improve adoption

2011-05-14 Thread Mauro Talevi
On 14/05/2011 08:55, Mauro Talevi wrote: The only difference between what you propose and what we have is that you need to execute a one-off command - ant copy-dependencies - to retrieve the jars from the external repos. It's a philosophical issue more than anything else. Ant tends

Re: [jbehave-dev] A request to improve adoption

2011-05-15 Thread Mauro Talevi
else I'm missing? Cheers, Liz. On Fri, May 13, 2011 at 7:22 AM, Mauro Talevi mauro.tal...@aquilonia.org wrote: Hi, the point of using Maven is that you don't need to build the jars, these are already available on Maven Central and will be automatically downloaded when you declare them

[jbehave-dev] JBehave Core 3.4 released

2011-05-17 Thread Mauro Talevi
All, the JBehave Team is happy to announce the release of JBehave Core 3.4 http://jbehave.org/2011/05/17/jbehave-3-4-released/ Cheers - To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Re: [jbehave-dev] How to extend Jbehave

2011-05-23 Thread Mauro Talevi
thanks. On 23 May 2011 19:38, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Hi Marc, what do you mean by extension of the current grammar. JBehave supports a simple BBD grammar that allows you as a user to define you own DSL (Domain Specific

Re: [jbehave-dev] How to extend Jbehave

2011-05-23 Thread Mauro Talevi
. On 23 May 2011 19:38, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Hi Marc, what do you mean by extension of the current grammar. JBehave supports a simple BBD grammar that allows you as a user to define you own DSL (Domain Specific

Re: [jbehave-dev] Re: A request to improve adoption

2011-06-05 Thread Mauro Talevi
Hi, not really sure what you're doing, hence difficult to help. If you don't want to use Maven, you can use Ant, with or without a dependency management framework. The running of examples has now been simplified and made independent of the pom.xml:

Re: [jbehave-dev] Bug in StoryRunner.runParametrisedScenariosByExamples

2011-06-25 Thread Mauro Talevi
Hi, can you please raise issue at http://jira.codehaus.org/browse/JBEHAVE? Cheers On 24/06/2011 21:25, Plamen Gurov wrote: Currently, the method StoryRunner.runParametrisedScenariosByExamples does not check the configuration and whenever a step fails all subsequent examples are reported as

Re: [jbehave-dev] Bug in StoryRunner.runParametrisedScenariosByExamples

2011-06-27 Thread Mauro Talevi
? Is there a workaround, until this is fixed? What release of JBehave will this make it into? Thanks, Vicki On Sat, Jun 25, 2011 at 2:18 AM, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Hi, can you please raise issue at http://jira.codehaus.org/browse

Re: [jbehave-dev] JBehave

2011-09-03 Thread Mauro Talevi
Hi, if you're using Maven you don't need to download the libs via ant. Simply declare the dependencies in the POMs following the examples in http://jbehave.org/reference/stable/running-examples.html The deps will be downloaded automatically from Maven Central. Cheers On 03/09/2011 17:31,

Re: [jbehave-dev] Unable to run jbehave examples

2011-11-23 Thread Mauro Talevi
Hi, have you checked the code from git or did you download the src zip? If you download the src zip, be aware that you need to run the examples against a fixed version. The problem is that during the release, the jbehave modules' versions are fixed while the examples are kept on a

Re: [jbehave-dev] How to ignore or skip tests

2011-12-15 Thread Mauro Talevi
http://jbehave.org/reference/stable/meta-filtering.html Have a look at examples/threads to see it in action. E.g.: mvn clean install -Dmeta.filter=+outcome failed will only run scenarios tagged by meta @outcome failed. On Wed Dec 14 16:48:21 2011, Olmo Rigolo wrote: Hi all, I read about

Re: [jbehave-dev] How to ignore or skip tests

2011-12-15 Thread Mauro Talevi
And in JBehave, anything you can do in command-line you can do in IDE. The ThreadsStories also shows you how to configure the meta filter for IDE running. Remember that the command-line config will always override the IDE config. On 15/12/2011 10:16, Mauro Talevi wrote: http://jbehave.org

Re: [jbehave-dev] jbehave 3.5.4 core API missing methods?

2011-12-16 Thread Mauro Talevi
Should be CodeLocations. Where did you see StoryLocation? On 15/12/2011 14:18, Olmo Rigolo wrote: Hi all, I am wondering where to find the method *StoryLocation.codeLocationFromFile* mentioned here : new StoryReporterBuilder().withCodeLocation(StoryLocation.codeLocationFromFile(new

Re: [jbehave-dev] How to ignore or skip tests

2011-12-16 Thread Mauro Talevi
. I still don't know how to configure the JUnit execution with skip. Which thread stories do youmean? Olmo On 15 December 2011 11:22, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: And in JBehave, anything you can do in command-line you can do in IDE

Re: [jbehave-dev] jbehave 3.5.4 core API missing methods?

2011-12-17 Thread Mauro Talevi
%28java.net.URL%29 Thanks for the answer! Olmo On 16 December 2011 14:58, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Should be CodeLocations. Where did you see StoryLocation? On 15/12/2011 14:18, Olmo Rigolo wrote: Hi all, I am wondering

Re: [jbehave-dev] How do I add a description to my story report?

2011-12-19 Thread Mauro Talevi
Any text before Narrative (or Scenario if Narrative is absent) is interpreted as Story description. On 19/12/2011 15:28, Olmo Rigolo wrote: Hi all, I want to write out to the report a brief description of the story that summarizes the link in JIRA etc. In RegExStoryParser.java on line 70,

Re: [jbehave-dev] How to configure maven build failures if tests fail

2011-12-19 Thread Mauro Talevi
See the threads examples for how to configure a fail-fast mode. You have two options: ignoreFailureInStories/ - if false it will stop after first failed story ignoreFailureInView/ - if false it will stop after any failures in the collective reports view If you can't get it work, you

Re: [jbehave-dev] Can we configure the runner output?

2011-12-19 Thread Mauro Talevi
Providing your own impl of EmbedderMonitor. On Mon Dec 19 15:46:48 2011, Olmo Rigolo wrote: Hi, Every time I run a story, within the process of the storyrunner , somewhere in ThreadPoolExecutor the path of the story (storyPath) is written out to the console Something like: Running story

Re: [jbehave-dev] What is the difference between RessourceLoader and StoryLoader

2011-12-19 Thread Mauro Talevi
ResourceLoader is a lower-level interface. For normal use, the StoryLoader will suffice. On Mon Dec 19 15:35:49 2011, Olmo Rigolo wrote: Hi, I am wondering what's the difference between the classes RessourceLoader and StoryLoader? I read in the documentation that StoryLoader is the default

Re: [jbehave-dev] How to configure maven build failures if tests fail

2011-12-19 Thread Mauro Talevi
process_help_scenarios.story some failure ... BUILD SUCCESS Mabe I have to configure ,generateViewAfterStories= to false? Olmo On 19 December 2011 15:45, Mauro Talevi mauro.tal...@aquilonia.org wrote: See the threads examples for how to configure a fail-fast mode. You have two options

Re: [jbehave-dev] How do I add a description to my story report?

2011-12-19 Thread Mauro Talevi
Narrative: Narrative:= Narrative: Description? InOrderTo AsA IWantTo ; This seams to get lost. Olmo On 19 December 2011 15:40, Mauro Talevi mauro.tal...@aquilonia.org wrote: Any text before Narrative (or Scenario if Narrative is absent) is interpreted as Story description. On 19/12/2011

Re: [jbehave-dev] Can we configure the runner output?

2011-12-20 Thread Mauro Talevi
configuration On Tue Dec 20 15:04:05 2011, Olmo Rigolo wrote: Hi Mauro, thanks for your reply. Could you provide an example? Thanks, Olmo On 19 December 2011 15:47, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Providing your own impl

Re: [jbehave-dev] How to configure maven build failures if tests fail

2011-12-21 Thread Mauro Talevi
. Thanks, Olmo On 19 December 2011 16:46, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: Please send a simplest project that reproduces behaviour. Can't help you otherwise. On 19 Dec 2011, at 16:26, Olmo Rigolo olmorig...@gmail.com mailto:olmorig

Re: [jbehave-dev] Can we configure the runner output?

2011-12-21 Thread Mauro Talevi
. I think this is normal. Thumbs up and kind regards, Olmo On 20 December 2011 16:31, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: public ThreadsStories() { Embedder embedder = configuredEmbedder(); embedder.useEmbedderMonitor(__new

Re: [jbehave-dev] How to implement a new annotation for the AnnotatedPathRunner

2011-12-21 Thread Mauro Talevi
You already have an loader that interprets these paths appropriately, so I would argue that introducing a new annotation is a bit redundant. Given that paths are just strings, you could re-interpret them as generic story ids (a path to a story). On Wed Dec 21 19:05:57 2011, Olmo Rigolo

Re: [jbehave-dev] How to implement a new annotation for the AnnotatedPathRunner

2011-12-21 Thread Mauro Talevi
() method that is not doing the right thing for me. In my case it returns null. This is only the case if I use the AnnotatedPathRunner. On 21 December 2011 19:16, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: You already have an loader that interprets

Re: [jbehave-dev] How to override the report template

2012-01-03 Thread Mauro Talevi
In general, you need to be careful that your resources are not overridden (copied over) by other similar operations at different mvn phases. Moreover, other resources - such as the ftl templates - are picked up from the classpath, so if you use the same name as the ones in the jar they make

Re: [jbehave-dev] How to override the report template

2012-01-04 Thread Mauro Talevi
to send you an example :) If you could quickly write how to do that (change the template (ftl)), we'd be very happy! Olmo On 3 January 2012 20:12, Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org wrote: In general, you need to be careful that your resources

Re: [jbehave-dev] Need help reg:Timeout exception

2012-01-16 Thread Mauro Talevi
Timeout is set via the EmbedderControls or Maven/Ant configuration. The threads examples shows you how to do both: https://github.com/jbehave/jbehave-core/tree/master/examples/threads On 16/01/2012 12:44, Robert Joseph wrote: Hi Team, While running a story file the execution breaks and an

Re: [jbehave-dev] Need help reg:Timeout exception

2012-01-18 Thread Mauro Talevi
of the xml and Story config files. Your help is much appreciated. Thanks! Regards, Robert Joseph. -Original Message- From: Mauro Talevi [mailto:mauro.tal...@aquilonia.org] Sent: Monday, January 16, 2012 6:21 PM To: dev@jbehave.codehaus.org Subject: Re: [jbehave-dev] Need help reg:Timeout

Re: [jbehave-dev] Need help reg:Timeout exception

2012-01-19 Thread Mauro Talevi
. | Office No: 9144 42002700 Extn: 3740.* *From:*Mauro Talevi [mailto:mauro.tal...@aquilonia.org] *Sent:* Wednesday, January 18, 2012 10:50 PM *To:* dev@jbehave.codehaus.org *Subject:* Re: [jbehave-dev] Need help reg:Timeout exception Please try using latest version of web: 3.5-beta-3 (which uses core

Re: [jbehave-dev] Parameterizing GivenStories and the parent scenario

2012-01-19 Thread Mauro Talevi
Hi Dave, the use case of using the GivenStories and parametrised scenarios together has not been considered yet. The examples table content is known to the given stories, but in order to pass them to the scenario context we need to come up with some convention (via some sort of anchor) and

Re: [jbehave-dev] potential bug?

2012-02-23 Thread Mauro Talevi
Hi Brian, Could you please provide a version of te spring security example that reproduces the problem and we can pull? Possibly with a working version of stories/steps and a failing version. Cheers On 23 Feb 2012, at 18:16, Brian Repko brian.re...@learnthinkcode.com wrote: JBehave

Re: [jbehave-dev] how to log messages from jbehave classes

2012-02-25 Thread Mauro Talevi
Hi Alex, generally JBehave uses the monitor pattern providing an interface that expresses the events you're interested in monitoring. Logging is one of the possible implementations of this interface. We don't use static loggers because it does not play well with DI. In the case of the

Re: [jbehave-dev] potential bug?

2012-02-25 Thread Mauro Talevi
names to avoid the situations below. Wasn't sure if you want fail state or working state... Brian - Original message - From: Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org To: dev@jbehave.codehaus.org mailto:dev@jbehave.codehaus.org dev@jbehave.codehaus.org

Re: [jbehave-dev] potential bug?

2012-02-27 Thread Mauro Talevi
/515aba3e7aef19781b43da5263f64e518bc7094c Brian - Original message - From: Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org To: dev@jbehave.codehaus.org mailto:dev@jbehave.codehaus.org Date: Sat, 25 Feb 2012 16:09:07 +0100 Subject: Re: [jbehave-dev] potential bug? Hi Brian

Re: [jbehave-dev] potential bug?

2012-02-27 Thread Mauro Talevi
a problem with the latest jbehave snapshot, that may point to a regression error. I'll have access to the laptop tonight to look at this. Brian - Original message - From: Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org To: dev@jbehave.codehaus.org mailto:dev

Re: [jbehave-dev] potential bug?

2012-02-28 Thread Mauro Talevi
? You mentioned that it had something to do with the the behaviors run as unit tests. They should be running at the integration-test phase, IIRC. But I can check that tonight. B - Original message - From: Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal...@aquilonia.org To: dev

Re: [jbehave-dev] potential bug?

2012-02-28 Thread Mauro Talevi
/ suffix). But I thought I'd leave that up to discussion. And to me this is a bug - after reading this, if you agree, just create the bug. If you don't you can IM me or email me. No worries Ta, Brian - Original message - From: Mauro Talevi mauro.tal...@aquilonia.org mailto:mauro.tal

Re: [jbehave-dev] Does jbehave have source code style guide?

2012-02-29 Thread Mauro Talevi
Hi, there's always been a tacit assumption that we follow the standard java code style. We could adopt a variant of http://portals.apache.org/development/code-standards.html. Personally, the only code style I don't find easy on the eye is the first - on the brackets. Also, number 5 on

[jbehave-scm] [scm-core][1] Merge branch 'master' of ssh://git.codehaus.org/jbehave-core

2012-03-14 Thread Mauro Talevi
commit ab90ffeb261f41a8fc833274a0d0eff53fa94422 Merge: 39c7173 553cdb8 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Mar 14 14:53:29 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Mar 14 14:53:29 2012 +0100 Merge branch 'master' of ssh

[jbehave-scm] [scm-core][1] JBEHAVE-740: Updated docs to clarify use of dependency management for version updates.

2012-03-14 Thread Mauro Talevi
commit 628276e05e0fa608ab610833daebbf2301db9606 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Mar 14 15:44:25 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Mar 14 15:44:25 2012 +0100 JBEHAVE-740: Updated docs to clarify use of dependency

Re: [jbehave-dev] Possibly move jenkins/hudson plugins to separate project?

2012-03-17 Thread Mauro Talevi
The dependency on glassfish as been removed in latest snapshot. The only artifacts not in Maven Central are the atlassian ones. If you build with the -s settings.xml you should be fine. If not, let us know what it is the problem. Cheers On 16/03/2012 22:00, Alexander Lehmann wrote: There

[jbehave-scm] [scm-tutorial][1] Updated spring config.

2012-03-20 Thread Mauro Talevi
commit 726dcc45584957c33cd0afbf98b30f6abd4a1eff Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Tue Mar 20 16:31:22 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Tue Mar 20 16:31:22 2012 +0100 Updated spring config. diff --git a/etsy-stories-java

[jbehave-scm] [scm-core][1] JBEHAVE-746: Applied patch from David Tanner.

2012-03-22 Thread Mauro Talevi
commit a030e621f299738225ae61e2959c6593f8a47322 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Thu Mar 22 11:55:53 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Thu Mar 22 11:55:53 2012 +0100 JBEHAVE-746: Applied patch from David Tanner. diff

Re: [jbehave-dev] Failing Bamboo builds

2012-03-28 Thread Mauro Talevi
Hi Alexander, the core distribution build has been fixed (thanks for the heads up). But regardless, the core examples build was always working. The distribution creates the docs (with the test coverage) but does not execute the examples. Cheers On 27/03/2012 18:28, Alexander Lehmann

[jbehave-scm] [scm-core][1] JBEHAVE-751: Updated EBNF grammar.

2012-03-28 Thread Mauro Talevi
commit d66a859bb372a029a5741238e93752fe38e16abe Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Mar 28 14:22:32 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Mar 28 14:22:32 2012 +0200 JBEHAVE-751: Updated EBNF grammar. diff --git

[jbehave-scm] [scm-core][1] Updated release notes.

2012-03-28 Thread Mauro Talevi
commit f471463adb8deed8c91d44d5d7b02093d9ef2777 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Mar 28 17:25:55 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Mar 28 17:25:55 2012 +0200 Updated release notes. diff --git a/distribution/src

[jbehave-scm] [scm-site][1] Updated team list

2012-03-28 Thread Mauro Talevi
commit 062fabd489dc64ae86798599bc7bf20a0811e64c Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Mar 28 18:45:49 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Mar 28 18:45:49 2012 +0200 Updated team list diff --git a/site-frontend/src/site

[jbehave-scm] [scm-core/jbehave-3.6][1] [maven-release-plugin] copy for tag jbehave-3.6

2012-03-29 Thread Mauro Talevi
Tag:/strong jbehave-3.6 (added) Type: annotated Commit: 0ba506c2f4561647bd9195035dac78de39a6e2aa Tagger: tag_info[:taggername] tag_info[:taggeremail] Message: [maven-release-plugin] copy for tag jbehave-3.6

[jbehave-scm] [scm-web][1] Updated to latest core release.

2012-03-29 Thread Mauro Talevi
commit e1020c1342bbe902697fa8f8aea9ee1fe6193326 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Thu Mar 29 10:12:48 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Thu Mar 29 10:12:48 2012 +0200 Updated to latest core release. diff --git a/pom.xml b

[jbehave-scm] [scm-web/jbehave-web-3.5][1] [maven-release-plugin] copy for tag jbehave-web-3.5

2012-03-29 Thread Mauro Talevi
Tag:/strong jbehave-web-3.5 (added) Type: annotated Commit: 72a7e2d8a21b6210de6a5d3f3f1e22d2f4c30cdb Tagger: tag_info[:taggername] tag_info[:taggeremail] Message: [maven-release-plugin] copy for tag jbehave-web-3.5

[jbehave-scm] [scm-web][1] Updated examples to latest snapshot.

2012-03-29 Thread Mauro Talevi
commit 2242ebb133e32d68672b05aaeccfec08822b5dea Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Thu Mar 29 10:26:57 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Thu Mar 29 10:26:57 2012 +0200 Updated examples to latest snapshot. diff --git

[jbehave-scm] [scm-tutorial][1] Updated to latest versions of core and web.

2012-03-29 Thread Mauro Talevi
commit 2af806f8f82577669be780e7ff45dbb5213b0011 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Thu Mar 29 10:32:47 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Thu Mar 29 10:32:47 2012 +0200 Updated to latest versions of core and web. diff --git

[jbehave-scm] [scm-web][1] Updated to latest core snapshot.

2012-03-29 Thread Mauro Talevi
commit 740922b61ff5543d521e1f2aedad359aea09e488 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Thu Mar 29 10:44:23 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Thu Mar 29 10:44:23 2012 +0200 Updated to latest core snapshot. diff --git a/pom.xml

[jbehave-scm] [scm-tutorial][1] Removed unnecessary property to generate view, now that it is automatically generated.

2012-03-30 Thread Mauro Talevi
commit 47f403c7260ab3200e17a409af89bd01bb8f4a72 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Fri Mar 30 09:48:13 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Fri Mar 30 09:48:13 2012 +0200 Removed unnecessary property to generate view, now

[jbehave-scm] [scm-tutorial][1] Removed unnecessary property to generate view, now that it is automatically generated.

2012-03-30 Thread Mauro Talevi
commit 4cd7da180c2c14405eb600642d348e51b77d4d76 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Fri Mar 30 09:48:54 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Fri Mar 30 09:48:54 2012 +0200 Removed unnecessary property to generate view, now

[jbehave-scm] [scm-core][1] JBEHAVE-754: Re-instated use of Spring 2.5.x in trader-spring example to prove backward compat with jbehave-spring using 3.1.x.

2012-04-02 Thread Mauro Talevi
commit 704fe07611a29d414ddee33fa9298799f856cbf2 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Mon Apr 2 13:49:38 2012 +0200 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Mon Apr 2 13:49:38 2012 +0200 JBEHAVE-754: Re-instated use of Spring 2.5.x in trader

[jbehave-scm] [scm-core][1] JBEHAVE-754: Fixed cglib optional declaration.

2012-04-03 Thread Mauro Talevi
commit 908a55b8e61c77703c0b93521420a04d36634c94 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Tue Apr 3 13:32:18 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Tue Apr 3 13:32:18 2012 +0100 JBEHAVE-754: Fixed cglib optional declaration. diff

[jbehave-scm] [scm-web][1] Merge branch 'master' of ssh://git.codehaus.org/jbehave-web

2012-04-04 Thread Mauro Talevi
commit 5b4752f1b263604cabb6ba48b199372089ce99cb Merge: 6c1c006 b5df03c Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Apr 4 12:12:21 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Apr 4 12:12:21 2012 +0100 Merge branch 'master' of ssh

[jbehave-scm] [scm-web][2] JBEHAVE-757: Configuerd use of SameThreadExecutors.

2012-04-04 Thread Mauro Talevi
commit 6c1c0065a6d33a92d8e20cd39a67a3be04555917 Author: Mauro Talevi mauro.tal...@aquilonia.org AuthorDate: Wed Apr 4 12:10:01 2012 +0100 Commit: Mauro Talevi mauro.tal...@aquilonia.org CommitDate: Wed Apr 4 12:10:01 2012 +0100 JBEHAVE-757: Configuerd use of SameThreadExecutors. diff

<    1   2   3   4   5   6   7   8   9   10   >