Skip to content

Commit

Permalink
#204 - Add Testcontainer libs 4οΈβƒ£πŸ«ΈπŸŒ€βœοΈπŸ“—πŸ§πŸ³
Browse files Browse the repository at this point in the history
  • Loading branch information
hendisantika committed May 24, 2024
1 parent aca736a commit 72e1dfb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
10 changes: 10 additions & 0 deletions logs/browserstack-plugin.log
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@
11:01:49.112 [ApplicationImpl pooled thread 45] INFO com.browserstack.utils.Helpers - null
11:03:54.927 [ApplicationImpl pooled thread 45] INFO c.b.l.BrowserStackRunExtension - spring boot
11:03:54.927 [ApplicationImpl pooled thread 45] INFO com.browserstack.utils.Helpers - null
07:50:43.860 [ApplicationImpl pooled thread 85] INFO c.b.l.BrowserStackRunExtension - maven
07:50:43.860 [ApplicationImpl pooled thread 85] INFO com.browserstack.utils.Helpers - null
07:50:55.763 [ApplicationImpl pooled thread 82] INFO c.b.l.BrowserStackRunExtension - spring boot
07:50:55.764 [ApplicationImpl pooled thread 82] INFO com.browserstack.utils.Helpers - null
07:51:36.072 [ApplicationImpl pooled thread 82] INFO c.b.l.BrowserStackRunExtension - spring boot
07:51:36.072 [ApplicationImpl pooled thread 82] INFO com.browserstack.utils.Helpers - null
07:51:46.420 [ApplicationImpl pooled thread 72] INFO c.b.l.BrowserStackRunExtension - maven
07:51:46.420 [ApplicationImpl pooled thread 72] INFO com.browserstack.utils.Helpers - null
07:52:03.885 [ApplicationImpl pooled thread 92] INFO c.b.l.BrowserStackRunExtension - maven
07:52:03.885 [ApplicationImpl pooled thread 92] INFO com.browserstack.utils.Helpers - null
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>21</java.version>
<testcontainers.version>1.19.8</testcontainers.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -71,8 +72,30 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mysql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 72e1dfb

Please sign in to comment.