aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2019-03-03 16:56:56 -0500
committerPamela Dragosh <pdragosh@research.att.com>2019-03-03 17:20:46 -0500
commit524997091437eacb3dba098103b5c6313c03683d (patch)
treef93879e33f6b20bf5f9a16af2edb1c20a8bcef30
parent18246633d85152c2f6730dcad20854538606f3b3 (diff)
Add cucumber dependency for all projects
This will be used in all the projects for integration testing. Also cleared some intelliJ from .gitignore Issue-ID: POLICY-1273 Change-Id: If2cc6a28a972a5b4dbbb64139f0fad6e8518cb5c Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-rw-r--r--.gitignore2
-rw-r--r--integration/pom.xml14
2 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 236c0b3b..01eaa82c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,5 @@
target
.metadata/
/bin/
+.idea
+**/*.iml
diff --git a/integration/pom.xml b/integration/pom.xml
index 935516ea..68f85320 100644
--- a/integration/pom.xml
+++ b/integration/pom.xml
@@ -214,6 +214,20 @@
<scope>test</scope>
</dependency>
+ <!-- Cucumber Tests -->
+ <dependency>
+ <groupId>io.cucumber</groupId>
+ <artifactId>cucumber-java</artifactId>
+ <version>4.2.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.cucumber</groupId>
+ <artifactId>cucumber-junit</artifactId>
+ <version>4.2.0</version>
+ <scope>test</scope>
+ </dependency>
+
<!-- Exception testing -->
<dependency>
<groupId>org.assertj</groupId>