spring-boot-python-executor-cache-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.w4t3rcs</groupId> <artifactId>spring-boot-python-executor-cache-starter</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-cache-starter</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Spring Boot Python Executor Cache Starter</name> <description> Starter module for enabling caching support in the Spring Boot Python Executor project. Includes all necessary dependencies and autoconfiguration to cache Python script results using Spring Cache abstraction out of the box. </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>io.github.w4t3rcs</groupId> <artifactId>spring-boot-python-executor-cache-autoconfigure</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.w4t3rcs</groupId> <artifactId>spring-boot-python-executor-cache</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> </plugin> </plugins> </build> </project>