maestro-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mnebus</groupId> <artifactId>maestro-core</artifactId> <version>0.0.2</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>io.github.mnebus</groupId> <artifactId>maestro-core</artifactId> <version>0.0.2</version> <name>Maestro Core</name> <description>A simple and powerful workflow orchestrator</description> <url>https://github.com/mnebus/maestro</url> <inceptionYear>2025</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://github.com/mnebus/maestro/blob/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>mnebus</id> <name>Michael Nebus</name> <url>https://github.com/mnebus</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/mnebus/maestro.git</connection> <developerConnection>scm:git:ssh://git@github.com/mnebus/maestro.git</developerConnection> <url>https://github.com/mnebus/maestro</url> </scm> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.7.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>5.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.17.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-retry</artifactId> <version>2.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.kagkarlsson</groupId> <artifactId>db-scheduler</artifactId> <version>14.0.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.17.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.flogger</groupId> <artifactId>flogger</artifactId> <version>0.8</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>11.3.4</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jdbi</groupId> <artifactId>jdbi3-core</artifactId> <version>3.48.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.flogger</groupId> <artifactId>flogger-slf4j-backend</artifactId> <version>0.8</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-database-postgresql</artifactId> <version>11.3.4</version> <scope>runtime</scope> </dependency> </dependencies> </project>