1
mirror of https://github.com/CarmJos/EasySQL.git synced 2024-09-19 21:35:47 +00:00
EasySQL/with-pool/hikaricp/pom.xml

135 lines
4.7 KiB
XML
Raw Permalink Normal View History

2021-12-13 21:39:38 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2022-01-08 09:29:26 +00:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
2021-12-13 21:39:38 +00:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>easysql-parent</artifactId>
<groupId>cc.carm.lib</groupId>
<version>0.4.7</version>
2022-01-25 15:43:25 +00:00
<relativePath>../../pom.xml</relativePath>
2021-12-13 21:39:38 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
<maven.compiler.source>${jdk.version}</maven.compiler.source>
<maven.compiler.target>${jdk.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
</properties>
2021-12-13 21:39:38 +00:00
<artifactId>easysql-hikaricp</artifactId>
2022-01-28 19:28:22 +00:00
<name>EasySQL-HikariCP</name>
2021-12-13 21:39:38 +00:00
<description>EasySQL的应用部分。此为HikariCP版本。</description>
2021-12-13 21:54:14 +00:00
<url>https://github.com/CarmJos/EasySQL</url>
2021-12-13 21:39:38 +00:00
<developers>
<developer>
<id>CarmJos</id>
<name>Carm Jos</name>
<email>carm@carm.cc</email>
<url>https://www.carm.cc</url>
<roles>
<role>Main Developer</role>
</roles>
</developer>
</developers>
2021-12-13 21:54:14 +00:00
<licenses>
<license>
2022-01-08 09:29:26 +00:00
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<comments>EasySQL与HikariCP均采用MIT开源协议。</comments>
2021-12-13 21:54:14 +00:00
</license>
</licenses>
<issueManagement>
<system>GitHub Issues</system>
2022-01-29 08:44:37 +00:00
<url>https://github.com/CarmJos/EasySQL/issues</url>
2021-12-13 21:54:14 +00:00
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
2022-01-29 08:44:37 +00:00
<url>https://github.com/CarmJos/EasySQL/actions/workflows/maven.yml</url>
2021-12-13 21:54:14 +00:00
</ciManagement>
2021-12-13 21:39:38 +00:00
<dependencies>
<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>easysql-api</artifactId>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>
2021-12-13 21:39:38 +00:00
<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>easysql-impl</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<!--项目地址 https://github.com/brettwooldridge/HikariCP/ -->
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<!--suppress MavenPackageUpdate -->
<version>4.0.3</version>
<optional>true</optional>
2021-12-13 21:39:38 +00:00
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
2021-12-13 21:39:38 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<pattern>com.zaxxer.hikari</pattern>
<shadedPattern>cc.carm.lib.easysql.hikari</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/*.txt</exclude>
</excludes>
</filter>
</filters>
</configuration>
2021-12-13 21:39:38 +00:00
</plugin>
</plugins>
</build>
</project>