|
20 | 20 | <slf4j.version>1.7.30</slf4j.version> |
21 | 21 | <cucumber.version>6.9.1</cucumber.version> |
22 | 22 | <logback.version>1.2.3</logback.version> |
23 | | - <testng.version>6.14.3</testng.version> |
24 | | - <poi-ooxml.version>3.9</poi-ooxml.version> |
25 | | - <poi.version>4.1.2</poi.version> |
26 | | - <cucumber-java.version>6.8.2</cucumber-java.version> |
27 | | - <cucumber-core.version>6.8.2</cucumber-core.version> |
28 | | - <cucumber-picocontainer.version>6.8.2</cucumber-picocontainer.version> |
29 | | - <cucumber-jvm.version>6.8.2</cucumber-jvm.version> |
30 | | - <cucumber-testng.version>6.8.2</cucumber-testng.version> |
| 23 | + <testng.version>7.4.0</testng.version> |
| 24 | + <cucumber.version>6.10.4</cucumber.version> |
31 | 25 | <jackson.version>2.12.2</jackson.version> |
32 | | - <test-name>End to End Scenario</test-name> |
33 | | - <application-url>http://bstackdemo.com/</application-url> |
34 | | - <application-localhost-url>http://localhost:3000/</application-localhost-url> |
35 | | - <parallel-count>5</parallel-count> |
36 | 26 | </properties> |
37 | 27 |
|
38 | 28 | <dependencies> |
|
47 | 37 | <groupId>com.browserstack</groupId> |
48 | 38 | <artifactId>browserstack-local-java</artifactId> |
49 | 39 | <version>${browserstack-local-java.version}</version> |
| 40 | + <scope>test</scope> |
50 | 41 | </dependency> |
51 | 42 |
|
52 | 43 | <dependency> |
53 | 44 | <groupId>org.apache.commons</groupId> |
54 | 45 | <artifactId>commons-lang3</artifactId> |
55 | 46 | <version>${comslang.version}</version> |
56 | | - </dependency> |
57 | | - <dependency> |
58 | | - <groupId>io.qameta.allure</groupId> |
59 | | - <artifactId>allure-testng</artifactId> |
60 | | - <version>${alluretestng.version}</version> |
61 | | - </dependency> |
62 | | - |
63 | | - <dependency> |
64 | | - <groupId>io.qameta.allure</groupId> |
65 | | - <artifactId>allure-maven</artifactId> |
66 | | - <version>${allure.version}</version> |
| 47 | + <scope>test</scope> |
67 | 48 | </dependency> |
68 | 49 |
|
69 | 50 | <dependency> |
70 | 51 | <groupId>org.slf4j</groupId> |
71 | 52 | <artifactId>slf4j-api</artifactId> |
72 | 53 | <version>${slf4j.version}</version> |
| 54 | + <scope>test</scope> |
73 | 55 | </dependency> |
74 | 56 |
|
75 | 57 | <dependency> |
76 | 58 | <groupId>ch.qos.logback</groupId> |
77 | 59 | <artifactId>logback-classic</artifactId> |
78 | 60 | <version>${logback.version}</version> |
| 61 | + <scope>test</scope> |
79 | 62 | </dependency> |
80 | 63 |
|
81 | 64 | <dependency> |
82 | 65 | <groupId>org.testng</groupId> |
83 | 66 | <artifactId>testng</artifactId> |
84 | 67 | <version>${testng.version}</version> |
| 68 | + <scope>test</scope> |
85 | 69 | </dependency> |
86 | 70 |
|
87 | | - <dependency> |
88 | | - <groupId>org.apache.poi</groupId> |
89 | | - <artifactId>poi-ooxml</artifactId> |
90 | | - <version>${poi-ooxml.version}</version> |
91 | | - </dependency> |
92 | | - |
93 | | - <dependency> |
94 | | - <groupId>org.apache.poi</groupId> |
95 | | - <artifactId>poi</artifactId> |
96 | | - <version>${poi.version}</version> |
97 | | - </dependency> |
98 | 71 | <dependency> |
99 | 72 | <groupId>io.cucumber</groupId> |
100 | 73 | <artifactId>cucumber-java</artifactId> |
101 | | - <version>${cucumber-java.version}</version> |
| 74 | + <version>${cucumber.version}</version> |
| 75 | + <scope>test</scope> |
102 | 76 | </dependency> |
103 | 77 | <dependency> |
104 | 78 | <groupId>io.cucumber</groupId> |
105 | 79 | <artifactId>cucumber-core</artifactId> |
106 | | - <version>${cucumber-core.version}</version> |
| 80 | + <version>${cucumber.version}</version> |
| 81 | + <scope>test</scope> |
107 | 82 | </dependency> |
| 83 | + |
108 | 84 | <dependency> |
109 | 85 | <groupId>io.cucumber</groupId> |
110 | 86 | <artifactId>cucumber-picocontainer</artifactId> |
111 | | - <version>${cucumber-picocontainer.version}</version> |
| 87 | + <version>${cucumber.version}</version> |
112 | 88 | <scope>test</scope> |
113 | 89 | </dependency> |
| 90 | + |
114 | 91 | <dependency> |
115 | 92 | <groupId>io.cucumber</groupId> |
116 | 93 | <artifactId>cucumber-jvm</artifactId> |
117 | | - <version>${cucumber-jvm.version}</version> |
| 94 | + <version>${cucumber.version}</version> |
118 | 95 | <type>pom</type> |
119 | 96 | </dependency> |
120 | 97 | <dependency> |
121 | 98 | <groupId>io.cucumber</groupId> |
122 | 99 | <artifactId>cucumber-testng</artifactId> |
123 | | - <version>${cucumber-testng.version}</version> |
| 100 | + <version>${cucumber.version}</version> |
| 101 | + <scope>test</scope> |
124 | 102 | </dependency> |
125 | 103 |
|
126 | 104 | <dependency> |
127 | 105 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
128 | 106 | <artifactId>jackson-dataformat-yaml</artifactId> |
129 | 107 | <version>${jackson.version}</version> |
| 108 | + <scope>test</scope> |
130 | 109 | </dependency> |
131 | 110 |
|
132 | 111 | <dependency> |
133 | 112 | <groupId>com.fasterxml.jackson.core</groupId> |
134 | 113 | <artifactId>jackson-databind</artifactId> |
135 | 114 | <version>${jackson.version}</version> |
| 115 | + <scope>test</scope> |
136 | 116 | </dependency> |
137 | 117 |
|
138 | 118 | </dependencies> |
|
0 commit comments