wunmi-example-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-example-spring-boot</artifactId>
<version>0.3.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.3.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>wunmi-example-spring-boot</artifactId>
<name>wunmi-example-spring-boot</name>
<description>Runnable demo: a Spring Boot app wiring the wunmi starter, the bundled JDBC store
over H2, and the admin console. Also serves as the end-to-end auto-configuration test.</description>
<properties>
<!-- A sample app, never published to Maven Central. -->
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencies>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-jdbc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.adeyinka7789</groupId>
<artifactId>wunmi-admin-ui</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</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>