forked from jbehave/jbehave-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
29 lines (26 loc) · 953 Bytes
/
Copy pathpom.xml
File metadata and controls
29 lines (26 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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>org.jbehave.tutorials</groupId>
<artifactId>etsy</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBehave Tutorial using Etsy.com</name>
<properties>
<jbehave.core.version>3.5.1</jbehave.core.version>
<jbehave.web.version>3.4</jbehave.web.version>
<jbehave.site.version>3.1.1</jbehave.site.version>
</properties>
<profiles>
<profile>
<id>groovy-pico</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>etsy-stories-groovy-pico</module>
</modules>
</profile>
</profiles>
</project>