infobip-postgresql-testcontainers-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.infobip</groupId> <artifactId>infobip-postgresql-testcontainers-spring-boot-starter</artifactId> <version>4.3.4</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.infobip</groupId> <artifactId>infobip-testcontainers-spring-boot-starter</artifactId> <version>4.3.4</version> </parent> <artifactId>infobip-postgresql-testcontainers-spring-boot-starter</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>infobip-testcontainers-common</artifactId> <version>${project.version}</version> </dependency> <!-- LIBS --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <version>${testcontainers.version}</version> </dependency> <!--TEST--> <dependency> <groupId>com.infobip</groupId> <artifactId>infobip-testcontainers-test-common</artifactId> <scope>test</scope> <version>${project.version}</version> </dependency> </dependencies> </project>