engine-services
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.noumenadigital.platform</groupId> <artifactId>engine-services</artifactId> <version>2025.1.9</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> <artifactId>engine-services</artifactId> <name>${project.artifactId}</name> <description>Provides core backend services and runtime components for the Noumena Engine</description> <url>https://documentation.noumenadigital.com/</url> <licenses> <license> <name>NPL Maven Plugin License</name> <url>https://noumenadigital.com/npl-maven-plugin-license/</url> </license> </licenses> <developers> <developer> <organization>Noumena Digital</organization> <organizationUrl>https://noumenadigital.com/</organizationUrl> </developer> </developers> <scm> <url>https://github.com/NoumenaDigital/platform</url> </scm> <parent> <groupId>com.noumenadigital.platform</groupId> <artifactId>parent-pom</artifactId> <version>2025.1.9</version> <relativePath>../parent-pom</relativePath> </parent> <dependencies> <dependency> <!-- TODO ST-3259: Remove this dependency --> <groupId>${project.groupId}</groupId> <artifactId>engine-api-values</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>json-mapper</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>language-builtins</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>language-runtime</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>migration-dsl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>migration-runner</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>npl-migration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>storage</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>values</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>protonj2-client</artifactId> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> </plugin> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> </plugin> </plugins> </build> </project>