spring-boot-audit-event-logger
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dnastack</groupId> <artifactId>spring-boot-audit-event-logger</artifactId> <version>1.0.19</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.dnastack</groupId> <artifactId>spring-boot-audit-event-logger</artifactId> <version>1.0.19</version> <name>Spring Boot Audit Event Logger</name> <description>Audit events in a Spring Boot application.</description> <url>https://www.github.com/DNAstack/spring-boot-audit-event-logger</url> <packaging>jar</packaging> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Kevin Hong</name> <email>kevin@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>Jabran Khan</name> <email>jabran@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>Maxmillian Barkley</name> <email>max@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>Angelo Genovese</name> <email>angelo@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>Usanthan Kajendirarajah</name> <email>usanthan@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>Jakub Stromsky</name> <email>jakub@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> <developer> <name>A N M Bazlur Rahman</name> <email>anmbazlur@dnastack.com</email> <organization>DNAstack</organization> <organizationUrl>https://www.dnastack.com</organizationUrl> </developer> </developers> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.2.4</version> <relativePath /> <!-- lookup parent from repository --> </parent> <properties> <java.version>21</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.surefile.plugin.version>3.0.0-M7</maven.surefile.plugin.version> <maven.gpg-plugin.version>1.5</maven.gpg-plugin.version> <!-- Sonar --> <sonar.nexus-staging.plugin.version>1.6.13</sonar.nexus-staging.plugin.version> <sonar.dependency-check.plugin.version>7.4.1</sonar.dependency-check.plugin.version> <sonar.dependency-check.jsonReportPath>target/dependency-check-report.json</sonar.dependency-check.jsonReportPath> <sonar.dependency-check.htmlReportPath>target/dependency-check-report.html</sonar.dependency-check.htmlReportPath> <sonar.dependency-check.summarize>true</sonar.dependency-check.summarize> <!-- DNAstack Libs --> <dnastack.audit-event-logger.version>1.0.15</dnastack.audit-event-logger.version> <!-- Other --> <spring-cloud.version>2023.0.0</spring-cloud.version> <slf4j.version>2.0.10</slf4j.version> <junit.version>5.10.1</junit.version> <mockito.version>5.8.0</mockito.version> <hamcrest.version>2.2</hamcrest.version> </properties> <repositories> <repository> <id>github</id> <name>DNAstack Private Github Packages</name> <url>https://maven.pkg.github.com/DNAstack/dnastack-packages</url> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- DNAstack --> <dependency> <groupId>com.dnastack</groupId> <artifactId>dnastack-audit-event-logger</artifactId> <version>${dnastack.audit-event-logger.version}</version> </dependency> <!-- Can be removed? --> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> <version>0.10.2</version> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-actuator-autoconfigure</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!-- Security --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-jose</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-resource-server</artifactId> </dependency> <!-- Development Tools --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <!-- Metrics --> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-tracing-bridge-brave</artifactId> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- Test --> <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>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${sonar.dependency-check.plugin.version}</version> <configuration> <format>ALL</format> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefile.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <!-- DNAstack Internal Release Profile --> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub DNAstack Apache Maven Packages</name> <url>https://maven.pkg.github.com/DNAstack/dnastack-packages</url> </repository> </distributionManagement> </profile> <!-- Maven Central Release Profile --> <profile> <id>release</id> <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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </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.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${sonar.nexus-staging.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>20</stagingProgressTimeoutMinutes> <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> </configuration> </plugin> </plugins> </build> </profile> </profiles> <scm> <connection>scm:git:git://github.com/DNAstack/spring-boot-audit-event-logger.git</connection> <developerConnection>scm:git:ssh://github.com:DNAstack/spring-boot-audit-event-logger.git</developerConnection> <url>https://github.com/DNAstack/spring-boot-audit-event-logger/tree/main</url> </scm> </project>