spring-boot-logger-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.devil0ll</groupId>
<artifactId>spring-boot-logger-tools</artifactId>
<version>1.0.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<repositories>
<repository>
<id>ALiYun</id>
<name>ALiYun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
</repositories>
<groupId>io.github.devil0ll</groupId>
<artifactId>spring-boot-logger-tools</artifactId>
<version>1.0.2</version>
<name>spring-boot-logger-tools</name>
<description>spring-boot-logger-tools</description>
<properties>
<!-- <java.version>1.8</java.version>-->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<url>https://github.com/Devil0ll/spring-boot-logger-tools</url>
<scm>
<url>https://github.com/Devil0ll/spring-boot-logger-tools</url>
<connection>scm:git:https://github.com/Devil0ll/spring-boot-logger-tools.git</connection>
<developerConnection>scm:git:https://github.com/Devil0ll/spring-boot-logger-tools.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>Devil0ll</id>
<name>Devil0ll</name>
<email>xxxx@github.com</email>
<url>https://github.com</url>
<timezone>+8</timezone>
</developer>
</developers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<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>
<version>3.6.3</version>
<configuration>
<source>8</source> <!-- 明确指定Java版本 -->
<doclint>none</doclint> <!-- 关闭严格检查 -->
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<charset>UTF-8</charset>
<additionalparam>-Xdoclint:none</additionalparam> <!-- 禁用严格检查 -->
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://central.sonatype.com/api/v1/publishing/upload</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>