archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbehave-groovy-archetype
Show all versions of jbehave-groovy-archetype
An archetype to run multiple textual stories with steps classes written in Groovy.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <name>JBehave Groovy Stories</name> <properties> <jbehave.core.version>$jbehaveCoreVersion</jbehave.core.version> <jbehave.site.version>$jbehaveSiteVersion</jbehave.site.version> <embeddables>**/*Stories.java</embeddables> </properties> <dependencies> <dependency> <groupId>org.jbehave</groupId> <artifactId>jbehave-groovy</artifactId> <version>${jbehave.core.version}</version> </dependency> <dependency> <groupId>org.jbehave</groupId> <artifactId>jbehave-core</artifactId> <version>${jbehave.core.version}</version> <classifier>resources</classifier> <type>zip</type> </dependency> <dependency> <groupId>org.jbehave.site</groupId> <artifactId>jbehave-site-resources</artifactId> <version>${jbehave.site.version}</version> <type>zip</type> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <filtering>true</filtering> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>src/main/groovy</directory> <filtering>false</filtering> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.jbehave</groupId> <artifactId>jbehave-maven-plugin</artifactId> <version>${jbehave.core.version}</version> <executions> <execution> <id>unpack-view-resources</id> <phase>process-resources</phase> <goals> <goal>unpack-view-resources</goal> </goals> </execution> <execution> <id>embeddable-stories</id> <phase>integration-test</phase> <configuration> <includes> <include>${embeddables}</include> </includes> <excludes /> <ignoreFailureInStories>true</ignoreFailureInStories> <ignoreFailureInView>false</ignoreFailureInView> <threads>1</threads> <metaFilters> <metaFilter></metaFilter> </metaFilters> </configuration> <goals> <goal>run-stories-as-embeddables</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>