camunda7-bpmn-sync-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opentmf.camunda</groupId> <artifactId>camunda7-bpmn-sync-service</artifactId> <version>1.1.1</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.4.4</version> </parent> <groupId>org.opentmf.camunda</groupId> <artifactId>camunda7-bpmn-sync-service</artifactId> <version>1.1.1</version> <description> Synchronizes the BPMNs to Camunda 7 on app startup and if requested, performs process instance migration. </description> <url>https://github.com/opentmf/camunda7-bpmn-sync-service</url> <organization> <name>PiA Group</name> <url>https://www.pia-group.net/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A permissive open-source license</comments> </license> </licenses> <developers> <developer> <id>gokhanus</id> <name>Gokhan Demir</name> <email>gokhan@opentmf.org</email> </developer> <developer> <id>cezmi-aslan</id> <name>Cezmi Aslan</name> <email>cezmi.aslan@pia-team.com</email> </developer> <developer> <id>yusuf-bozkurt</id> <name>Yusuf Bozkurt</name> <email>yusuf.bozkurt@pia-team.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <opentmf-db-lock-service.version>1.0.8</opentmf-db-lock-service.version> <opentmf-openid-webclient-provider.version>1.1.1</opentmf-openid-webclient-provider.version> <opentmf-basic-webclient-provider.version>1.1.1</opentmf-basic-webclient-provider.version> <camunda.version>7.23.0</camunda.version> <archunit.version>1.4.0</archunit.version> <testcontainers.version>1.20.6</testcontainers.version> <nexus-staging-plugin.version>1.7.0</nexus-staging-plugin.version> <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> <mockserver-netty.version>5.15.0</mockserver-netty.version> <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> <sonar-plugin.version>5.1.0.4751</sonar-plugin.version> <maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version> <maven-failsafe-plugin.version>3.5.3</maven-failsafe-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <sonar.java.source>${java.version}</sonar.java.source> <sonar.java.target>${java.version}</sonar.java.target> </properties> <dependencies> <!-- Compile time dependencies --> <dependency> <groupId>org.opentmf.util</groupId> <artifactId>opentmf-db-lock-service</artifactId> <version>${opentmf-db-lock-service.version}</version> </dependency> <!-- Optional dependencies --> <dependency> <groupId>org.opentmf.client</groupId> <artifactId>opentmf-openid-webclient-provider</artifactId> <version>${opentmf-openid-webclient-provider.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.opentmf.client</groupId> <artifactId>opentmf-basic-webclient-provider</artifactId> <version>${opentmf-basic-webclient-provider.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> <version>${testcontainers.version}</version> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> <version>${camunda.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> <version>${testcontainers.version}</version> </dependency> <dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit-junit5</artifactId> <scope>test</scope> <version>${archunit.version}</version> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty</artifactId> <version>${mockserver-netty.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> <forkCount>2</forkCount> <reuseForks>false</reuseForks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnWarnings>false</failOnWarnings> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>publish-to-central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> </execution> <execution> <configuration> <!-- We will enable this after adding tests, GD, Aug 8 2022. --> <haltOnFailure>true</haltOnFailure> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>LINE</counter> <minimum>80%</minimum> <value>COVEREDRATIO</value> </limit> <limit> <counter>INSTRUCTION</counter> <minimum>80%</minimum> <value>COVEREDRATIO</value> </limit> <limit> <counter>BRANCH</counter> <minimum>80%</minimum> <value>COVEREDRATIO</value> </limit> <limit> <counter>CLASS</counter> <maximum>0</maximum> <value>MISSEDCOUNT</value> </limit> </limits> </rule> </rules> </configuration> <goals> <goal>check</goal> </goals> <id>coverage-check</id> </execution> </executions> </plugin> </plugins> </build> <scm> <url>https://github.com/opentmf/camunda7-bpmn-sync-service</url> <connection>scm:git:git@github.com:opentmf/camunda7-bpmn-sync-service.git</connection> <developerConnection>scm:git:git@github.com:opentmf/camunda7-bpmn-sync-service.git</developerConnection> <tag>camunda7-bpmn-sync-service-1.1.1</tag> </scm> </project>