wunmi-admin-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-admin-ui</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-admin-ui</artifactId>
<name>wunmi-admin-ui</name>
<description>Optional, self-contained admin console for wunmi: a REST API over the flag
management operations plus a single dependency-free HTML page. Add it and secure the
base path behind your own auth.</description>
<dependencies>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- Optional: only referenced when wunmi.admin.require-role is set, to gate the console
behind a granted authority. Apps that secure /wunmi/admin themselves don't need it. -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>