camunda-admin-process-registry
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.holunda</groupId> <artifactId>camunda-admin-process-registry</artifactId> <version>2025.05.1</version> </dependency>
<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.toolisticon.maven.parent</groupId> <artifactId>maven-parent-kotlin-base</artifactId> <version>2025.4.0</version> <relativePath/> </parent> <groupId>io.holunda</groupId> <artifactId>camunda-admin-process-registry</artifactId> <version>2025.05.1</version> <name>${project.artifactId}</name> <description>Register and run utility processes</description> <url>https://github.com/holunda-io/camunda-admin-process-registry/</url> <properties> <spring-boot.version>3.4.5</spring-boot.version> <camunda.version>7.23.0</camunda.version> <!-- required for camunda with jdk >= 9 --> <jaxb-impl.version>4.0.5</jaxb-impl.version> </properties> <dependencyManagement> <dependencies> <!-- CAMUNDA OFFICIAL --> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-bom</artifactId> <version>${camunda.version}</version> <scope>import</scope> <type>pom</type> </dependency> <!-- SPRING --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- KOTLIN --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> </dependency> <dependency> <groupId>io.github.oshai</groupId> <artifactId>kotlin-logging-jvm</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.holunda.data</groupId> <artifactId>camunda-bpm-data</artifactId> <version>2025.05.1</version> </dependency> <!-- TEST --> <dependency> <groupId>org.mockito.kotlin</groupId> <artifactId>mockito-kotlin</artifactId> <version>5.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.holunda</groupId> <artifactId>camunda-platform-7-autologin</artifactId> <version>0.1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> <scope>test</scope> </dependency> <!-- prior to jdk9 we have to include jaxb for camunda to work --> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>${jaxb-impl.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.github.javafaker</groupId> <artifactId>javafaker</artifactId> <version>1.0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- kotlin compiler --> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <configuration> <compilerPlugins> <plugin>spring</plugin> <plugin>no-arg</plugin> <plugin>all-open</plugin> </compilerPlugins> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>process-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/java</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>itest</id> <build> <defaultGoal>verify</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:holunda-io/camunda-admin-process-registry.git</connection> <url>scm:git:git@github.com:holunda-io/camunda-admin-process-registry.git</url> <developerConnection>scm:git:git@github.com:holunda-io/camunda-admin-process-registry.git</developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <id>jangalinski</id> <name>Jan Galinski</name> <roles> <role>Product Owner</role> <role>Developer</role> </roles> <organization>Holisticon AG</organization> <organizationUrl>https://holisticon.de</organizationUrl> </developer> <developer> <id>zambrovski</id> <name>Simon Zambrovski</name> <roles> <role>Product Owner</role> <role>Developer</role> <role>Toolsmith</role> </roles> <organization>Holisticon AG</organization> <organizationUrl>https://holisticon.de</organizationUrl> </developer> </developers> </project>