wunmi-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-spring-boot-starter</artifactId>
<version>0.4.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-parent</artifactId>
<version>0.4.0</version>
</parent>
<artifactId>wunmi-spring-boot-starter</artifactId>
<name>wunmi-spring-boot-starter</name>
<description>Spring Boot auto-configuration for wunmi: request-scoped caching, a FlagEngine
bean wired from your FlagStore, and the @RequiresFlag method gate.</description>
<dependencies>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-core</artifactId>
</dependency>
<!-- Optional: present → a JdbcFlagStore is auto-configured when a DataSource exists.
Apps that supply their own FlagStore don't need it on the classpath. -->
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<!-- Optional: only needed if the app enables config-property metadata. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>