konnect-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.oussemasahbeni</groupId> <artifactId>konnect-spring-boot-starter</artifactId> <version>0.0.2</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> <parent> <groupId>io.github.oussemasahbeni</groupId> <artifactId>konnect-parent</artifactId> <version>0.0.2</version> </parent> <artifactId>konnect-spring-boot-starter</artifactId> <packaging>jar</packaging> <name>Konnect Spring Boot Starter</name> <description>A Spring Boot Starter for easy integration with the Konnect payment service API</description> <url>https://github.com/Oussemasahbeni/konnect-spring-boot-starter</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Oussema sahbeni</name> <email>oussemasahbeni300@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/Oussemasahbeni/konnect-spring-boot-starter</url> <connection>scm:git:git://github.com/Oussemasahbeni/konnect-spring-boot-starter.git</connection> <developerConnection>https://github.com/Oussemasahbeni</developerConnection> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-spring-boot3</artifactId> <version>${resilience4j-spring-boot3.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.wiremock.integrations</groupId> <artifactId>wiremock-spring-boot</artifactId> <version>${wiremock-spring-boot.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>21</source> <target>21</target> <annotationProcessorPaths> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>