File tree Expand file tree Collapse file tree 6 files changed +14
-24
lines changed
testcontainers-selenium-demo
src/main/java/software/xdev/testcontainers/selenium/containers/browser Expand file tree Collapse file tree 6 files changed +14
-24
lines changed Original file line number Diff line number Diff line change 204204
205205 <rule name =" AvoidStringBuilderOrBuffer"
206206 language=" java"
207- message=" StringBuilder/ should not be used"
207+ message=" StringBuilder/StringBuffer should not be used"
208208 class=" net.sourceforge.pmd.lang.rule.xpath.XPathRule" >
209209 <description >
210210 Usually all cases where `StringBuilder` (or the outdated `StringBuffer`) is used are either due to confusing (legacy) logic or may be replaced by a simpler string concatenation.
Original file line number Diff line number Diff line change 1+ # 1.3.0
2+ * Update to Testcontainers v2
3+
14# 1.2.5
25* Update default Selenium version to ` 4.36.0 `
36* Updated dependencies
Original file line number Diff line number Diff line change 66
77 <groupId >software.xdev</groupId >
88 <artifactId >testcontainers-selenium-root</artifactId >
9- <version >1.2.6 -SNAPSHOT</version >
9+ <version >1.3.0 -SNAPSHOT</version >
1010 <packaging >pom</packaging >
1111
1212 <organization >
4545 <dependency >
4646 <groupId >com.puppycrawl.tools</groupId >
4747 <artifactId >checkstyle</artifactId >
48- <version >11.1.0 </version >
48+ <version >12.0.1 </version >
4949 </dependency >
5050 </dependencies >
5151 <configuration >
7070 <plugin >
7171 <groupId >org.apache.maven.plugins</groupId >
7272 <artifactId >maven-pmd-plugin</artifactId >
73- <version >3.27 .0</version >
73+ <version >3.28 .0</version >
7474 <configuration >
7575 <analysisCache >true</analysisCache >
7676 <includeTests >true</includeTests >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >software.xdev</groupId >
99 <artifactId >testcontainers-selenium-root</artifactId >
10- <version >1.2.6 -SNAPSHOT</version >
10+ <version >1.3.0 -SNAPSHOT</version >
1111 </parent >
1212
1313 <artifactId >testcontainers-selenium-demo</artifactId >
14- <version >1.2.6 -SNAPSHOT</version >
14+ <version >1.3.0 -SNAPSHOT</version >
1515 <packaging >jar</packaging >
1616
1717 <organization >
Original file line number Diff line number Diff line change 66
77 <groupId >software.xdev</groupId >
88 <artifactId >testcontainers-selenium</artifactId >
9- <version >1.2.6 -SNAPSHOT</version >
9+ <version >1.3.0 -SNAPSHOT</version >
1010 <packaging >jar</packaging >
1111
1212 <name >testcontainers-selenium</name >
5656 <dependency >
5757 <groupId >org.testcontainers</groupId >
5858 <artifactId >testcontainers</artifactId >
59- <version >1.21.3</version >
60- <exclusions >
61- <!-- No JUnit 4 -->
62- <exclusion >
63- <groupId >junit</groupId >
64- <artifactId >junit</artifactId >
65- </exclusion >
66- </exclusions >
67- </dependency >
68- <dependency >
69- <groupId >software.xdev</groupId >
70- <artifactId >testcontainers-junit4-mock</artifactId >
71- <version >1.0.2</version >
59+ <version >2.0.0</version >
7260 </dependency >
7361
7462 <!-- Testcontainers is using outdated v1 -->
332320 <dependency >
333321 <groupId >com.puppycrawl.tools</groupId >
334322 <artifactId >checkstyle</artifactId >
335- <version >11.1.0 </version >
323+ <version >12.0.1 </version >
336324 </dependency >
337325 </dependencies >
338326 <configuration >
357345 <plugin >
358346 <groupId >org.apache.maven.plugins</groupId >
359347 <artifactId >maven-pmd-plugin</artifactId >
360- <version >3.27 .0</version >
348+ <version >3.28 .0</version >
361349 <configuration >
362350 <analysisCache >true</analysisCache >
363351 <includeTests >true</includeTests >
Original file line number Diff line number Diff line change 5252import org .testcontainers .images .RemoteDockerImage ;
5353import org .testcontainers .lifecycle .TestDescription ;
5454import org .testcontainers .lifecycle .TestLifecycleAware ;
55- import org .testcontainers .shaded .org .apache .commons .io .FileUtils ;
5655import org .testcontainers .utility .DockerImageName ;
5756
5857import com .github .dockerjava .api .command .InspectContainerResponse ;
@@ -301,7 +300,7 @@ protected void configureShm()
301300 }
302301 else
303302 {
304- this .withSharedMemorySize (512 * FileUtils . ONE_MB );
303+ this .withSharedMemorySize (520_000_000L );
305304 }
306305 }
307306 }
You can’t perform that action at this time.
0 commit comments