Add cucumber dependency for all projects 76/79576/3
authorPamela Dragosh <pdragosh@research.att.com>
Sun, 3 Mar 2019 21:56:56 +0000 (16:56 -0500)
committerPamela Dragosh <pdragosh@research.att.com>
Sun, 3 Mar 2019 22:20:46 +0000 (17:20 -0500)
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>
.gitignore
integration/pom.xml

index 236c0b3..01eaa82 100644 (file)
@@ -7,3 +7,5 @@
 target
 .metadata/
 /bin/
+.idea
+**/*.iml
index 935516e..68f8532 100644 (file)
                 <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>