Skip to content

Commit 9211d1c

Browse files
committed
Throw out fat, unused, beta-grade, RUST blobs containing selenium-manager
1 parent 660e754 commit 9211d1c

File tree

2 files changed

+40
-2
lines changed
  • testcontainers-java-selenium-demo
  • testcontainers-java-selenium

2 files changed

+40
-2
lines changed

testcontainers-java-selenium-demo/pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,17 @@
5252
<dependency>
5353
<groupId>org.seleniumhq.selenium</groupId>
5454
<artifactId>selenium-remote-driver</artifactId>
55-
<!-- Tracing is not needed -->
5655
<exclusions>
56+
<!-- Tracing is not needed -->
5757
<exclusion>
5858
<groupId>io.opentelemetry</groupId>
5959
<artifactId>*</artifactId>
6060
</exclusion>
61+
<!-- No unused, beta-grade, RUST blobs -->
62+
<exclusion>
63+
<groupId>org.seleniumhq.selenium</groupId>
64+
<artifactId>selenium-manager</artifactId>
65+
</exclusion>
6166
</exclusions>
6267
</dependency>
6368

@@ -69,11 +74,25 @@
6974
<dependency>
7075
<groupId>org.seleniumhq.selenium</groupId>
7176
<artifactId>selenium-firefox-driver</artifactId>
77+
<exclusions>
78+
<!-- No unused, beta-grade, RUST blobs -->
79+
<exclusion>
80+
<groupId>org.seleniumhq.selenium</groupId>
81+
<artifactId>selenium-manager</artifactId>
82+
</exclusion>
83+
</exclusions>
7284
</dependency>
7385

7486
<dependency>
7587
<groupId>org.seleniumhq.selenium</groupId>
7688
<artifactId>selenium-chrome-driver</artifactId>
89+
<exclusions>
90+
<!-- No unused, beta-grade, RUST blobs -->
91+
<exclusion>
92+
<groupId>org.seleniumhq.selenium</groupId>
93+
<artifactId>selenium-manager</artifactId>
94+
</exclusion>
95+
</exclusions>
7796
</dependency>
7897
</dependencies>
7998

testcontainers-java-selenium/pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,17 @@
126126
<artifactId>selenium-remote-driver</artifactId>
127127
<version>4.19.1</version>
128128
<scope>test</scope>
129-
<!-- Tracing is not needed -->
130129
<exclusions>
130+
<!-- Tracing is not needed -->
131131
<exclusion>
132132
<groupId>io.opentelemetry</groupId>
133133
<artifactId>*</artifactId>
134134
</exclusion>
135+
<!-- No unused, beta-grade, RUST blobs -->
136+
<exclusion>
137+
<groupId>org.seleniumhq.selenium</groupId>
138+
<artifactId>selenium-manager</artifactId>
139+
</exclusion>
135140
</exclusions>
136141
</dependency>
137142
<dependency>
@@ -145,12 +150,26 @@
145150
<artifactId>selenium-firefox-driver</artifactId>
146151
<version>4.19.1</version>
147152
<scope>test</scope>
153+
<exclusions>
154+
<!-- No unused, beta-grade, RUST blobs -->
155+
<exclusion>
156+
<groupId>org.seleniumhq.selenium</groupId>
157+
<artifactId>selenium-manager</artifactId>
158+
</exclusion>
159+
</exclusions>
148160
</dependency>
149161
<dependency>
150162
<groupId>org.seleniumhq.selenium</groupId>
151163
<artifactId>selenium-chrome-driver</artifactId>
152164
<version>4.19.1</version>
153165
<scope>test</scope>
166+
<exclusions>
167+
<!-- No unused, beta-grade, RUST blobs -->
168+
<exclusion>
169+
<groupId>org.seleniumhq.selenium</groupId>
170+
<artifactId>selenium-manager</artifactId>
171+
</exclusion>
172+
</exclusions>
154173
</dependency>
155174
</dependencies>
156175

0 commit comments

Comments
 (0)