Skip to content

Commit

Permalink
Merge pull request #274 from Xceptance/develop
Browse files Browse the repository at this point in the history
[272] Update to neo 5.0.2
  • Loading branch information
wurzelkuchen authored Jul 29, 2024
2 parents a485327 + 0f33d4c commit eb99f36
Showing 1 changed file with 46 additions and 30 deletions.
76 changes: 46 additions & 30 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,30 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.xceptance</groupId>
<artifactId>neodymium-library</artifactId>
<version>5.0.1</version>
<version>5.0.2</version>

<name>neodymium-library</name>
<url>https://github.com/Xceptance/neodymium-library</url>
<description>A test automation library based on common other best practice open source libraries. It adds missing functionalities but does not reinvent the wheel. Just glues stuff together nicely and adds some sprinkles.</description>
<description>A test automation library based on common other best practice
open source libraries. It adds missing functionalities but does not
reinvent the wheel. Just glues stuff together nicely and adds some
sprinkles.</description>

<organization>
<name>Xceptance Software Technologies GmbH</name>
<url>https://www.xceptance.com</url>
</organization>

<developers>
<developer>
<name>Xceptance Test Automation Team</name>
<id>xceptance</id>
<email>[email protected] </email>
<organization>Xceptance Software Technologies GmbH</organization>
<organizationUrl>https://www.xceptance.com/</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<developer>
<name>Xceptance Test Automation Team</name>
<id>xceptance</id>
<email>[email protected] </email>
<organization>Xceptance Software Technologies GmbH</organization>
<organizationUrl>https://www.xceptance.com/</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>

<licenses>
<license>
Expand All @@ -35,7 +38,8 @@

<scm>
<connection>scm:git:git://github.com/Xceptance/neodymium-library.git</connection>
<developerConnection>scm:git:ssh://github.com/Xceptance/neodymium-library.git</developerConnection>
<developerConnection>
scm:git:ssh://github.com/Xceptance/neodymium-library.git</developerConnection>
<url>https://github.com/Xceptance/neodymium-library/tree/master</url>
</scm>

Expand All @@ -44,10 +48,10 @@
<maven.compiler.source.version>17</maven.compiler.source.version>
<maven.compiler.target.version>17</maven.compiler.target.version>
<surefire.version>3.0.0-M5</surefire.version>
<allure.version>2.26.0</allure.version>
<selenide.version>7.2.0</selenide.version>
<cucumber.version>6.9.1</cucumber.version>
<browserup.version>2.1.2</browserup.version>
<allure.version>2.26.0</allure.version>
<selenide.version>7.4.0</selenide.version>
<cucumber.version>6.9.1</cucumber.version>
<browserup.version>2.2.17</browserup.version>
<log4j.version>2.23.1</log4j.version>
<junit.version>4.13.1</junit.version>
<junit.jupiter.version>5.8.0</junit.jupiter.version>
Expand Down Expand Up @@ -98,7 +102,8 @@
<forkCount>4</forkCount>
<reuseForks>false</reuseForks>
<includes>
<include>com/xceptance/neodymium/junit5/tests/**/*Test.java</include>
<include>
com/xceptance/neodymium/junit5/tests/**/*Test.java</include>
<include>com/xceptance/neodymium/common/**/*Test.java</include>
</includes>
</configuration>
Expand Down Expand Up @@ -199,13 +204,16 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>com/xceptance/neodymium/junit4/tests/**/*Test.java</include>
<include>
com/xceptance/neodymium/junit4/tests/**/*Test.java</include>
</includes>
<includes>
<include>com/xceptance/neodymium/util/**/*Test.java</include>
<include>
com/xceptance/neodymium/util/**/*Test.java</include>
</includes>
<excludes>
<exclude>com/xceptance/neodymium/junit4/tests/visual/**/*Test.java</exclude>
<exclude>
com/xceptance/neodymium/junit4/tests/visual/**/*Test.java</exclude>
</excludes>
</configuration>
<dependencies>
Expand All @@ -228,8 +236,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>com/xceptance/neodymium/junit5/tests/**/*Test.java</include>
<include>com/xceptance/neodymium/util/**/*Test.java</include>
<include>
com/xceptance/neodymium/junit5/tests/**/*Test.java</include>
<include>
com/xceptance/neodymium/util/**/*Test.java</include>
</includes>
</configuration>
</plugin>
Expand All @@ -250,7 +260,13 @@

<dependencies>
<dependency>
<groupId>com.browserup</groupId>
<groupId>xyz.rogfam</groupId>
<artifactId>littleproxy</artifactId>
<version>2.0.22</version>
</dependency>

<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-mitm</artifactId>
<version>${browserup.version}</version>
<exclusions>
Expand Down Expand Up @@ -314,11 +330,11 @@
<artifactId>allure-junit5</artifactId>
<version>${allure.version}</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-cucumber6-jvm</artifactId>
<version>2.13.6</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-cucumber6-jvm</artifactId>
<version>2.13.6</version>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-selenide</artifactId>
Expand Down Expand Up @@ -380,7 +396,7 @@
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand All @@ -397,5 +413,5 @@
<artifactId>okhttp</artifactId>
<version>4.12.0</version>
</dependency>
</dependencies>
</dependencies>
</project>

0 comments on commit eb99f36

Please sign in to comment.