Skip to content

Commit 9175812

Browse files
authored
Merge pull request #206 from Xceptance/hotfix-dependencies-update
Hotfix dependencies update
2 parents 2a35fe8 + ece525a commit 9175812

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Maven Central](https://img.shields.io/maven-central/v/com.xceptance/neodymium-library.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.xceptance%22%20AND%20a:%22neodymium-library%22) [![Join the chat at https://gitter.im/neodymium-library/community](https://badges.gitter.im/neodymium-library/community.svg)](https://gitter.im/neodymium-library/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
22

3-
# Neodymium v4.1.0
3+
# Neodymium v4.1.2
44
Neodymium tries to solve your typical and most pressing UI test automation problems by combining JUnit, WebDriver, BDD/Cucumber, and proper reporting. It gives you ready to use templates, assembles well-known open source projects, and enhances this all with additional functionality that is often missing.
55

66
Neodymium is basically the combination of state of the art open source test libraries with additional glue to make it stick reliably together.
@@ -47,7 +47,7 @@ If you are still impatient, here is the quickest way to get Neodymium added to y
4747
<dependency>
4848
<groupId>com.xceptance</groupId>
4949
<artifactId>neodymium-library</artifactId>
50-
<version>3.3.1</version>
50+
<version>4.1.2</version>
5151
</dependency>
5252
```
5353
Add the `@RunWith` annotation to your test class or its superclass. This enables test execution with Neodymium.

pom.xml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.xceptance</groupId>
66
<artifactId>neodymium-library</artifactId>
7-
<version>4.1.1</version>
7+
<version>4.1.2</version>
88

99
<name>neodymium-library</name>
1010
<url>https://github.com/Xceptance/neodymium-library</url>
@@ -55,8 +55,10 @@
5555
<maven.compiler.target.version>11</maven.compiler.target.version>
5656
<surefire.version>2.22.2</surefire.version>
5757
<allure.version>2.13.6</allure.version>
58+
<selenide.version>5.15.1</selenide.version>
5859
<cucumber.version>6.8.1</cucumber.version>
59-
<log4j.version>2.15.0</log4j.version>
60+
<browserup.version>2.1.2</browserup.version>
61+
<log4j.version>2.16.0</log4j.version>
6062
</properties>
6163

6264
<repositories>
@@ -211,7 +213,7 @@
211213
<dependency>
212214
<groupId>junit</groupId>
213215
<artifactId>junit</artifactId>
214-
<version>4.13.1</version>
216+
<version>4.13.2</version>
215217
</dependency>
216218
<dependency>
217219
<groupId>org.aeonbits.owner</groupId>
@@ -221,7 +223,7 @@
221223
<dependency>
222224
<groupId>org.yaml</groupId>
223225
<artifactId>snakeyaml</artifactId>
224-
<version>1.27</version>
226+
<version>1.29</version>
225227
</dependency>
226228
<dependency>
227229
<groupId>io.cucumber</groupId>
@@ -261,17 +263,17 @@
261263
<dependency>
262264
<groupId>com.jayway.jsonpath</groupId>
263265
<artifactId>json-path</artifactId>
264-
<version>2.4.0</version>
266+
<version>2.6.0</version>
265267
</dependency>
266268
<dependency>
267269
<groupId>com.codeborne</groupId>
268270
<artifactId>selenide</artifactId>
269-
<version>5.15.1</version>
271+
<version>${selenide.version}</version>
270272
</dependency>
271273
<dependency>
272274
<groupId>org.apache.commons</groupId>
273275
<artifactId>commons-csv</artifactId>
274-
<version>1.8</version>
276+
<version>1.9.0</version>
275277
</dependency>
276278
<dependency>
277279
<groupId>org.apache.commons</groupId>
@@ -281,12 +283,12 @@
281283
<dependency>
282284
<groupId>org.apache.commons</groupId>
283285
<artifactId>commons-lang3</artifactId>
284-
<version>3.11</version>
286+
<version>3.12.0</version>
285287
</dependency>
286288
<dependency>
287289
<groupId>org.slf4j</groupId>
288290
<artifactId>slf4j-api</artifactId>
289-
<version>1.7.30</version>
291+
<version>1.7.32</version>
290292
</dependency>
291293
<dependency>
292294
<groupId>org.apache.logging.log4j</groupId>
@@ -306,12 +308,12 @@
306308
<dependency>
307309
<groupId>com.browserup</groupId>
308310
<artifactId>browserup-proxy-core</artifactId>
309-
<version>2.1.1</version>
311+
<version>${browserup.version}</version>
310312
</dependency>
311313
<dependency>
312314
<groupId>com.browserup</groupId>
313315
<artifactId>browserup-proxy-mitm</artifactId>
314-
<version>2.1.1</version>
316+
<version>${browserup.version}</version>
315317
</dependency>
316318
</dependencies>
317-
</project>
319+
</project>

0 commit comments

Comments
 (0)