Skip to content

Commit

Permalink
Upgrade 'jsoup' in Java 8 targets to 1.14.2 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbabcoc authored Aug 27, 2021
1 parent d4d4dfe commit e247a79
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ dependencies {
compile('com.github.sbabcoc:logback-testng:1.3.4') {
exclude group: 'org.testng', module: 'testng'
}
compile 'org.jsoup:jsoup:1.13.1'
compile('org.hamcrest:hamcrest-core:2.2') { force = true }
compile('org.yaml:snakeyaml:1.28') { force = true }

Expand Down
30 changes: 20 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<logback-testng.version>1.3.4</logback-testng.version>
<sonar.language>java</sonar.language>
<jacoco.version>0.8.7</jacoco.version>
<jsoup.version>1.13.1</jsoup.version>
<build-helper-plugin.version>3.2.0</build-helper-plugin.version>
<dependency-plugin.version>3.2.0</dependency-plugin.version>
<clean-plugin.version>3.1.0</clean-plugin.version>
Expand Down Expand Up @@ -86,11 +85,6 @@
<artifactId>logback-testng</artifactId>
<version>${logback-testng.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
Expand Down Expand Up @@ -131,10 +125,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
</dependencies>

<profiles>
Expand All @@ -151,6 +141,7 @@
<testng-foundation.version>3.0.3-j7</testng-foundation.version>
<selenium.version>2.53.1</selenium.version>
<commons-io.version>2.6</commons-io.version>
<jsoup.version>1.13.1</jsoup.version>
<htmlunit.version>2.21</htmlunit.version>
<mockito.version>2.25.0</mockito.version>
<!-- managed to resolve identified threat -->
Expand Down Expand Up @@ -182,6 +173,11 @@
<artifactId>selenium-support</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
Expand Down Expand Up @@ -242,6 +238,10 @@
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
Expand Down Expand Up @@ -293,6 +293,7 @@
<testng-foundation.version>3.0.3-j8</testng-foundation.version>
<selenium.version>3.141.59</selenium.version>
<guava.version>30.1.1-jre</guava.version>
<jsoup.version>1.14.2</jsoup.version>
<htmlunit.version>2.52.0</htmlunit.version>
<jcommander.version>1.78</jcommander.version>
<mockito.version>3.1.0</mockito.version>
Expand Down Expand Up @@ -322,6 +323,11 @@
<artifactId>selenium-server</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
Expand Down Expand Up @@ -403,6 +409,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
Expand Down
1 change: 1 addition & 0 deletions selenium2Deps.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
exclude group: 'org.seleniumhq.selenium', module: 'selenium-java'
}
selenium2Compile 'org.seleniumhq.selenium:selenium-support:2.53.1'
selenium2Compile 'org.jsoup:jsoup:1.13.1'
selenium2Compile 'net.sourceforge.htmlunit:htmlunit:2.21'
selenium2Compile('org.bouncycastle:bcpkix-jdk15on:1.68') { force = true }
selenium2Compile('org.bouncycastle:bcprov-jdk15on:1.68') { force = true }
Expand Down
1 change: 1 addition & 0 deletions selenium3Deps.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies {
exclude module: 'htmlunit-driver'
exclude group: 'net.sourceforge.htmlunit', module: 'htmlunit'
}
selenium3Compile 'org.jsoup:jsoup:1.14.2'
selenium3Compile 'org.seleniumhq.selenium:htmlunit-driver:2.52.0'
selenium3Compile('com.squareup.okhttp3:okhttp:4.9.1') { force = true }
selenium3Compile('com.squareup.okio:okio:2.10.0') { force = true }
Expand Down

0 comments on commit e247a79

Please sign in to comment.