flow
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.progmodek</groupId>
<artifactId>flow</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" 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>io.github.progmodek</groupId>
<artifactId>flow</artifactId>
<version>1.0.1</version>
<name>Flow Driven Domain</name>
<description>
This library transforms your domain into a 'flowable', 'process-centric' dmain.
</description>
<url>https://github.com/progmodEK/flow-driven-domain</url>
<licenses>
<license>
<name>Private License</name>
<url>https://github.com/progmodEK/flow-driven-domain/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>progmodEK</id>
<name>Elie Khoury</name>
<email>elie.khoury.progmod@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/progmodEK/flow-driven-domain.git</connection>
<developerConnection>scm:git:ssh://github.com/progmodEK/flow-driven-domain.git</developerConnection>
<url>https://github.com/progmodEK/flow-driven-domain</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.progmodek</groupId>
<artifactId>flow-common</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>0.10.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.rholder</groupId>
<artifactId>guava-retrying</artifactId>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.2</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>