spring-boot-python-executor-testcontainers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.w4t3rcs</groupId>
<artifactId>spring-boot-python-executor-testcontainers</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-python-executor-testcontainers</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>Spring Boot Python Executor Testcontainers</name>
<description>
Reusable Testcontainers-based module providing REST and gRPC server containers
for integration tests of the Spring Boot Python Executor library.
</description>
<url>https://github.com/w4t3rcs/spring-boot-python-executor</url>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>w4t3rcs</name>
<email>w4t3rofficial@gmail.com</email>
</developer>
</developers>
<scm>
<url>https://github.com/w4t3rcs/spring-boot-python-executor</url>
<connection>scm:git:git://github.com/w4t3rcs/spring-boot-python-executor.git</connection>
<developerConnection>scm:git:ssh://git@github.com:w4t3rcs/spring-boot-python-executor.git</developerConnection>
</scm>
<parent>
<groupId>io.github.w4t3rcs</groupId>
<artifactId>spring-boot-python-executor-parent</artifactId>
<version>1.0.0</version>
</parent>
<properties>
<spring-boot.version>3.5.3</spring-boot.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>io.github.w4t3rcs</groupId>
<artifactId>python-server-testcontainers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.w4t3rcs</groupId>
<artifactId>spring-boot-python-executor-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>