Skip to content

Commit eec2046

Browse files
committed
remove no longer used dependencies
various updates java 11
1 parent 2cb504f commit eec2046

1 file changed

Lines changed: 8 additions & 57 deletions

File tree

pom.xml

Lines changed: 8 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.seleniumhq.selenium</groupId>
77
<artifactId>htmlunit3-driver</artifactId>
8-
<version>4.14.1</version>
8+
<version>4.15.0-SNAPSHOT</version>
99

1010
<name>${project.artifactId}</name>
1111
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
@@ -18,15 +18,15 @@
1818
<maven.compiler.source>11</maven.compiler.source>
1919
<maven.compiler.target>11</maven.compiler.target>
2020

21-
<selenium.version>4.14.1</selenium.version>
22-
<htmlunit.version>3.7.0</htmlunit.version>
21+
<selenium.version>4.15.0</selenium.version>
22+
<htmlunit.version>3.8.0-SNAPSHOT</htmlunit.version>
2323

2424
<jetty.version>9.4.53.v20231009</jetty.version>
2525

2626
<checkstyle.version>9.3</checkstyle.version>
27-
<spotbugs.version>4.7.3</spotbugs.version>
28-
<archunit.version>1.1.0</archunit.version>
29-
<dependencycheck.version>8.4.0</dependencycheck.version>
27+
<spotbugs.version>4.8.1</spotbugs.version>
28+
<archunit.version>1.2.0</archunit.version>
29+
<dependencycheck.version>8.4.3</dependencycheck.version>
3030
</properties>
3131

3232
<licenses>
@@ -103,30 +103,6 @@
103103
<artifactId>htmlunit</artifactId>
104104
<version>${htmlunit.version}</version>
105105
</dependency>
106-
<dependency>
107-
<groupId>org.hamcrest</groupId>
108-
<artifactId>hamcrest-all</artifactId>
109-
<version>1.3</version>
110-
<scope>test</scope>
111-
</dependency>
112-
<dependency>
113-
<groupId>org.mockito</groupId>
114-
<artifactId>mockito-core</artifactId>
115-
<version>2.18.3</version>
116-
<scope>test</scope>
117-
<exclusions>
118-
<exclusion>
119-
<groupId>net.bytebuddy</groupId>
120-
<artifactId>byte-buddy</artifactId>
121-
</exclusion>
122-
</exclusions>
123-
</dependency>
124-
<dependency>
125-
<groupId>org.assertj</groupId>
126-
<artifactId>assertj-core</artifactId>
127-
<version>3.12.2</version>
128-
<scope>test</scope>
129-
</dependency>
130106
<dependency>
131107
<groupId>org.eclipse.jetty</groupId>
132108
<artifactId>jetty-maven-plugin</artifactId>
@@ -201,41 +177,16 @@
201177
</exclusion>
202178
</exclusions>
203179
</dependency>
204-
<dependency>
205-
<groupId>org.eclipse.mylyn.github</groupId>
206-
<artifactId>org.eclipse.egit.github.core</artifactId>
207-
<version>2.1.5</version>
208-
<scope>test</scope>
209-
<exclusions>
210-
<exclusion>
211-
<groupId>com.google.code.gson</groupId>
212-
<artifactId>gson</artifactId>
213-
</exclusion>
214-
</exclusions>
215-
</dependency>
216-
<dependency>
217-
<groupId>com.google.code.gson</groupId>
218-
<artifactId>gson</artifactId>
219-
<version>2.8.9</version>
220-
<scope>test</scope>
221-
</dependency>
222-
<dependency>
223-
<groupId>org.littleshoot</groupId>
224-
<artifactId>littleproxy</artifactId>
225-
<version>1.1.2</version>
226-
<scope>test</scope>
227-
</dependency>
228180
</dependencies>
229181

230182
<build>
231183
<plugins>
232184
<plugin>
233185
<groupId>org.apache.maven.plugins</groupId>
234186
<artifactId>maven-compiler-plugin</artifactId>
235-
<version>3.8.1</version>
187+
<version>3.11.0</version>
236188
<configuration>
237-
<source>1.8</source>
238-
<target>1.8</target>
189+
<release>11</release>
239190
<showDeprecation>true</showDeprecation>
240191
<showWarnings>true</showWarnings>
241192
<encoding>utf-8</encoding>

0 commit comments

Comments
 (0)