smd-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>app.dodb</groupId> <artifactId>smd-spring-boot-starter</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>app.dodb</groupId> <artifactId>smd-spring-boot-starter</artifactId> <version>0.0.1</version> <name>Simple Message Dispatch</name> <description>A lightweight Java library designed to support CQRS and event-driven applications.</description> <url>https://github.com/DavidOpDeBeeck/simple-message-dispatch</url> <inceptionYear>2025</inceptionYear> <licenses> <license> <name>GPL-3.0 license</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <id>davidodb</id> <name>David Op de Beeck</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/DavidOpDeBeeck/simple-message-dispatch.git</connection> <developerConnection>scm:git:ssh://github.com/DavidOpDeBeeck/simple-message-dispatch.git</developerConnection> <url>https://github.com/DavidOpDeBeeck/simple-message-dispatch</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.5.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>app.dodb</groupId> <artifactId>smd-api</artifactId> <version>0.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>runtime</scope> </dependency> </dependencies> </project>