Skip to content

Commit

Permalink
Merge branch 'electronSupport'
Browse files Browse the repository at this point in the history
# Conflicts:
#	README.md
  • Loading branch information
MedhaGupta-Ril committed Dec 20, 2023
2 parents d1f2175 + c1e6d9f commit ad4c0e3
Show file tree
Hide file tree
Showing 5 changed files with 541 additions and 820 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![CodeQL](https://github.com/znsio/teswiz/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/znsio/teswiz/actions/workflows/codeql-analysis.yml)

## Latest successful build id:
[![Latest Commit](https://img.shields.io/badge/commit-5c5c140fa3-blue.svg)](https://jitpack.io/#znsio/teswiz)
[![Latest Commit](https://img.shields.io/badge/commit-1f005b0fba-blue.svg)](https://jitpack.io/#znsio/teswiz)

# To Build
`./gradlew clean build`
Expand Down
13 changes: 10 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext {
gradleVersion = "8.5"
assertJVersion = "3.24.2"
atdVersion = "14.0.1"
applitoolsAppiumVersion = "5.66.1"
atdVersion = "02322d6f1f"
applitoolsAppiumVersion = "5.66.3"
seleniumVersion = "4.13.0"
commonsLang3Version = "3.14.0"
commonsRngSimpleVersion = "1.5"
Expand All @@ -21,6 +21,7 @@ buildscript {
aspectJVersion = "1.9.20.1"
webDriverManager = '5.5.3'
specmaticVersion = '1.0.4'
log4jVersion = '2.22.0'
}
}

Expand Down Expand Up @@ -71,7 +72,13 @@ dependencies {
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$project.fasterxmlJacksonVersion"
implementation "com.konghq:unirest-java:$project.unirestVersion"
implementation "org.assertj:assertj-core:$project.assertJVersion"
implementation "com.github.AppiumTestDistribution:AppiumTestDistribution:$project.atdVersion"
implementation ("com.github.AppiumTestDistribution:AppiumTestDistribution:$project.atdVersion") {
exclude group: 'log4j', module: 'log4j'
}
// Migrating from Log4j 1.x to 2.x - https://logging.apache.org/log4j/2.x/manual/migration.html
implementation "org.apache.logging.log4j:log4j-1.2-api:$project.log4jVersion"
implementation "org.apache.logging.log4j:log4j-api:$project.log4jVersion"
implementation "org.apache.logging.log4j:log4j-core:$project.log4jVersion"
implementation "org.seleniumhq.selenium:selenium-http-jdk-client:$project.seleniumVersion"
// implementation "org.seleniumhq.selenium:selenium-java:$project.seleniumVersion"
implementation "org.apache.commons:commons-lang3:$project.commonsLang3Version"
Expand Down
Loading

0 comments on commit ad4c0e3

Please sign in to comment.