logback-access-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.akkinoc.spring.boot</groupId> <artifactId>logback-access-spring-boot-starter</artifactId> <version>4.5.2</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> <groupId>dev.akkinoc.spring.boot</groupId> <artifactId>logback-access-spring-boot-starter</artifactId> <version>4.5.2</version> <name>logback-access-spring-boot-starter</name> <description>Spring Boot Starter for Logback-access.</description> <url>https://github.com/akkinoc/logback-access-spring-boot-starter</url> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.4.5</version> </parent> <organization> <name>akkinoc.dev</name> <url>https://akkinoc.dev</url> </organization> <developers> <developer> <id>akkinoc</id> <name>Akihiro Kondo</name> <email>akkinoc@gmail.com</email> <url>https://akkinoc.dev</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://github.com/akkinoc/logback-access-spring-boot-starter</url> <connection>scm:git:git@github.com:akkinoc/logback-access-spring-boot-starter.git</connection> <developerConnection>scm:git:git@github.com:akkinoc/logback-access-spring-boot-starter.git</developerConnection> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/akkinoc/logback-access-spring-boot-starter/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/akkinoc/logback-access-spring-boot-starter/actions</url> </ciManagement> <properties> <gpg.skip>true</gpg.skip> <publishing.skip>true</publishing.skip> </properties> <profiles> <profile> <id>release</id> <properties> <gpg.skip>false</gpg.skip> <publishing.skip>false</publishing.skip> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback.access</groupId> <artifactId>logback-access-common</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>ch.qos.logback.access</groupId> <artifactId>logback-access-tomcat</artifactId> <version>2.0.6</version> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback.access</groupId> <artifactId>logback-access-jetty12</artifactId> <version>2.0.6</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.kotest</groupId> <artifactId>kotest-assertions-core-jvm</artifactId> <version>5.9.1</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <testSourceDirectory>src/test/kotlin</testSourceDirectory> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <configuration> <rules> <requireJavaVersion> <version>[${java.version},)</version> </requireJavaVersion> <requireMavenVersion> <version>[3.6,)</version> </requireMavenVersion> </rules> </configuration> <executions> <execution> <id>enforce</id> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-allopen</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> <configuration> <compilerPlugins> <plugin>spring</plugin> </compilerPlugins> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <phase>none</phase> </execution> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addBuildEnvironmentEntries>true</addBuildEnvironmentEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>2.0.0</version> <configuration> <includes> <include>src/main/kotlin/dev/akkinoc/spring/boot/logback/access/module.md</include> <include>src/main/kotlin/dev/akkinoc/spring/boot/logback/access/package.md</include> </includes> </configuration> <executions> <execution> <id>javadocJar</id> <phase>package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.ozsie</groupId> <artifactId>detekt-maven-plugin</artifactId> <version>1.23.8</version> <dependencies> <dependency> <groupId>io.gitlab.arturbosch.detekt</groupId> <artifactId>detekt-cli</artifactId> <version>1.23.8</version> </dependency> <dependency> <groupId>io.gitlab.arturbosch.detekt</groupId> <artifactId>detekt-formatting</artifactId> <version>1.23.8</version> </dependency> </dependencies> <configuration> <buildUponDefaultConfig>true</buildUponDefaultConfig> <config>.detekt/config.yml</config> </configuration> <executions> <execution> <id>check</id> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign</id> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <autoPublish>true</autoPublish> <skipPublishing>${publishing.skip}</skipPublishing> </configuration> </plugin> </plugins> </build> </project>