auditor.starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.tkaczenko.auditor</groupId>
<artifactId>auditor.starter</artifactId>
<version>0.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.tkaczenko.auditor</groupId>
<artifactId>auditor.starter</artifactId>
<version>0.0.2</version>
<name>auditor.starter</name>
<description>Automatically configures and integrates Spring Boot auditing capabilities for HTTP requests and responses.
The library includes:
auditor.core: Automatically audits inbound HTTP requests and responses to the application's controllers;
auditor.inbound: Handles auditing of inbound HTTP requests and responses;
auditor.outbound: Manages auditing of outbound HTTP requests and responses via the RestTemplate client.
Audit data, including payloads, headers, and metadata, is persisted in an SQL database.</description>
<url>https://tkaczenko.github.io/auditor</url>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/tkaczenko/auditor/blob/main/LICENSE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>tkaczenko</id>
<name>Andrii Tkachenko</name>
<email>andrii.tkaczenko@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/tkaczenko/auditor.git</connection>
<developerConnection>scm:git:https://github.com/tkaczenko/auditor.git</developerConnection>
<url>https://github.com/tkaczenko/auditor</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/tkaczenko/auditor/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/tkaczenko/auditor/actions</url>
</ciManagement>
<distributionManagement>
<downloadUrl>https://github.com/tkaczenko/auditor/releases</downloadUrl>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.9</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2022.0.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.tkaczenko.auditor</groupId>
<artifactId>auditor.core</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.tkaczenko.auditor</groupId>
<artifactId>auditor.inbound</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.tkaczenko.auditor</groupId>
<artifactId>auditor.outbound</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.8.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>