2 Star 1 Fork 0

yangziwen/quick-dao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 12.40 KB
一键复制 编辑 原始数据 按行查看 历史
yangziwen 提交于 2023-10-01 17:45 . change coverage plugin
<?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>io.github.yangziwen</groupId>
<artifactId>quick-dao</artifactId>
<version>0.0.21</version>
<packaging>pom</packaging>
<name>quick-dao</name>
<url>http://maven.apache.org</url>
<description>a data access tool for rapid development</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javax.persistence.version>1.0.2</javax.persistence.version>
<mybatis.version>3.5.6</mybatis.version>
<sql2o.version>1.5.4</sql2o.version>
<spring.jdbc.version>4.3.19.RELEASE</spring.jdbc.version>
<commons.lang3.version>3.3.2</commons.lang3.version>
<commons.collections4.version>4.1</commons.collections4.version>
<cglib.version>3.1</cglib.version>
<lombok.version>1.18.2</lombok.version>
<junit.version>4.13.1</junit.version>
<h2.version>1.4.197</h2.version>
<dbunit.version>2.6.0</dbunit.version>
</properties>
<distributionManagement>
<repository>
<id>repository</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>disable-javadoc-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</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>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.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>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/yangziwen/quick-dao</url>
<connection>https://github.com/yangziwen/quick-dao</connection>
<developerConnection>https://github.com/yangziwen/quick-dao</developerConnection>
</scm>
<developers>
<developer>
<name>yangziwen</name>
<email>438226625@qq.com</email>
<url>https://yangziwen.github.io</url>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.yangziwen</groupId>
<artifactId>quick-dao-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.yangziwen</groupId>
<artifactId>quick-dao-mybatis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.yangziwen</groupId>
<artifactId>quick-dao-sql2o</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.yangziwen</groupId>
<artifactId>quick-dao-spring-jdbc</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>${javax.persistence.version}</version>
</dependency>
<dependency>
<groupId>org.sql2o</groupId>
<artifactId>sql2o</artifactId>
<version>${sql2o.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.jdbc.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${commons.collections4.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>${cglib.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>${dbunit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>quick-dao</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerVersion>1.8</compilerVersion>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>io.github.yangziwen</groupId>
<artifactId>diff-jacoco-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<excludes>
<exclude>io/github/yangziwen/quickdao/example/entity/*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>pre-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>uCEZUxxOfee9MNwzhkhVeLU6gQVq8dBMK</repoToken>
<jacocoReports>
<jacocoReport>quick-dao-example/target/site/jacoco-diff/jacoco.xml</jacocoReport>
</jacocoReports>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>quick-dao-core</module>
<module>quick-dao-sql2o</module>
<module>quick-dao-example</module>
<module>quick-dao-mybatis</module>
<module>quick-dao-spring-jdbc</module>
</modules>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yangziwen1227/quick-dao.git
git@gitee.com:yangziwen1227/quick-dao.git
yangziwen1227
quick-dao
quick-dao
master

搜索帮助