jeap-error-handling-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-error-handling-service</artifactId> <version>11.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>jeap-error-handling-service</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>jEAP Error Handling Self Contained System</description> <parent> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-error-handling-parent</artifactId> <version>11.5.0</version> </parent> <!-- Other jEAP products use shedlock, however the spring-boot-parent has an old version 4.X. Once this version is proven to be stable, we should upgrade the version directly in parent and remove this specific version here. This way we avoid upgrading at once a major version of a dependency in multiple projects, which can be risky. --> <properties> <shedlock.version>5.4.0</shedlock.version> </properties> <dependencies> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-error-handling-ui</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-spring-boot-monitoring-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-spring-boot-swagger-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-database-postgresql</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-spring</artifactId> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-provider-jdbc-template</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-spring-boot-security-starter</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-spring-boot-logging-starter</artifactId> </dependency> <!-- messaging --> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-model</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-avro</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-api</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-infrastructure-kafka</artifactId> </dependency> <!-- tests --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-infrastructure-kafka-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-spring-boot-security-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.0.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>spring-mock-mvc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>au.com.dius.pact.consumer</groupId> <artifactId>junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!-- Required for running tests in IntelliJ --> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <!-- Caching --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-messaging-avro-maven-plugin</artifactId> <executions> <execution> <id>executionEventProcessingFailedEvent</id> <phase>generate-sources</phase> <goals> <goal>idl</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/avro/</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/</outputDirectory> </configuration> </execution> <execution> <id>executionTestEvents</id> <phase>generate-sources</phase> <goals> <goal>idl</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/test/avro/</sourceDirectory> <outputDirectory>${project.build.directory}/generated-test-sources/</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>au.com.dius.pact.provider</groupId> <artifactId>maven</artifactId> <!-- Actual publishing depends on a profile. Publishing gets activated in pipeline Jenkins builds by default. If there is a need to publish from local builds, enable the profile cdct-enable-publishing-local --> <executions> <execution> <phase>test</phase> <goals> <goal>publish</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables> <spring.test.context.cache.maxSize>1</spring.test.context.cache.maxSize> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>