jeap-reaction-observer-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-web</artifactId> <version>1.1.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> <parent> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-service</artifactId> <version>1.1.0</version> </parent> <artifactId>jeap-reaction-observer-web</artifactId> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-domain</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-persistence</artifactId> </dependency> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-kafka</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</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-monitoring-starter</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-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-spring</artifactId> <version>${shedlock.version}</version> </dependency> <!-- test --> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-service-test</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-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-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>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> </dependencies> </project>