Thanks, that pointed me in the right direction
The solution ended up being something similar to this:
<configuration>
<scope>test</scope>
<testSourceDirectory>src/test/resources</testSourceDirectory>
<includes>
<include>**/*.story</include>
</includes>
<metaFilters>
<metaFilter>-skip</metaFilter>
</metaFilters>
</configuration>
On Tue, Jun 17, 2014 at 2:41 PM, Mauro Talevi <[email protected]>
wrote:
> Use <scope>test</scope>
>
> On 17 Jun 2014, at 20:51, Brent Barker <[email protected]> wrote:
>
> I am trying to use the Maven plugin for StoryMapping found here:
> http://jbehave.org/reference/stable/story-mapping.html
>
> However, it appears that the <include> tag only looks in src/main/java/
>
> This is the exact maven tag I'm using:
> <include>**/*.story</include>
>
> Our stories are located in src/test/resources/stories. I moved a story to
> the src/main/java and it was able to locate it.
>
> Is there a way to change the path to find where the files are located at a
> higher level?
>
> Thanks
> -Brent
>
>