chippy-starter-simple-logger-mysql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitee.chippyer</groupId> <artifactId>chippy-starter-simple-logger-mysql</artifactId> <version>1.0.8.2-RELEASE</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> <name>simple-logger-mysql</name> <description>simple log collection-mysql for springboot</description> <url>https://gitee.com/chippyer</url> <!-- 注意logger-mysql和logger-tkmapper用的都是同一个 maven坐标(第一版出来以后申请一个新的maven坐标) 目前是通过x.x.x.y 通过y的奇偶数判断引入的是mybatisplus(奇数)还是tkmapper(偶数) --> <groupId>com.gitee.chippyer</groupId> <artifactId>chippy-starter-simple-logger-mysql</artifactId> <version>1.0.8.2-RELEASE</version> <scm> <url>https://gitee.com/chippyer</url> <connection>scm:git:https://gitee.com/chippyer/chippy-starter-simple-logger-mysql</connection> <developerConnection>scm:git:https://gitee.com/chippyer/chippy-starter-simple-logger-mysql</developerConnection> </scm> <developers> <developer> <id>chippy</id> <name>chippy</name> <email>450799968@qq.com</email> <timezone>+8</timezone> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mapstruct.version>1.2.0.Final</mapstruct.version> <tk.version>1.1.4</tk.version> <pagehelper.version>5.1.4</pagehelper.version> <simple-logger.version>1.0.8-RELEASE</simple-logger.version> <lombok.version>1.18.6</lombok.version> </properties> <dependencies> <dependency> <groupId>com.gitee.chippyer</groupId> <artifactId>chippy-starter-simple-logger</artifactId> <version>${simple-logger.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-jdk8</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>${pagehelper.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-base</artifactId> <version>${tk.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring</artifactId> <version>${tk.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-core</artifactId> <version>${tk.version}</version> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>sonatype-nexus-snapshots</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- 必须配置GPG插件用于使用以下配置对组件进行签名 --> <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-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <skip>true</skip> </configuration> </plugin>--> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <!-- 与 setting.xml 的 server 配置中的 sonatype-release 对应--> <serverId>Releases</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <!-- 【注】snapshotRepository 与 repository 中的 id 一定要与 setting.xml 中 server 的 id 保持一致! --> <distributionManagement> <snapshotRepository> <id>Snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>Releases</id> <url>https://s01.oss.sonatype.org/content/repositories/releases/</url> </repository> </distributionManagement> </profile> </profiles> </project>