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

322 lines
11 KiB
XML
Raw Normal View History

2021-12-11 16:09:19 +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-11 16:09:19 +00:00
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>
2021-12-20 10:40:29 +00:00
<properties>
<jdk.version>8</jdk.version>
<maven.compiler.source>${jdk.version}</maven.compiler.source>
<maven.compiler.target>${jdk.version}</maven.compiler.target>
2021-12-20 10:40:29 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
2021-12-20 10:40:29 +00:00
<sonar.organization>carmjos</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
2021-12-11 16:09:19 +00:00
<groupId>cc.carm.lib</groupId>
<artifactId>easysql-parent</artifactId>
<packaging>pom</packaging>
<version>0.4.7</version>
2021-12-11 16:09:19 +00:00
<modules>
2022-03-24 16:40:28 +00:00
<module>api</module>
<module>impl</module>
2021-12-13 21:39:38 +00:00
2022-03-24 16:40:28 +00:00
<module>with-pool/beecp</module>
<module>with-pool/hikaricp</module>
<module>demo</module>
2021-12-11 16:09:19 +00:00
</modules>
<name>EasySQL</name>
2021-12-13 21:39:38 +00:00
<description>简单便捷的数据库操作工具,可自选连接池。</description>
2022-01-29 08:44:37 +00:00
<url>https://github.com/CarmJos/EasySQL</url>
2021-12-11 16:09:19 +00:00
<developers>
<developer>
<id>CarmJos</id>
<name>Carm Jos</name>
<email>carm@carm.cc</email>
<url>https://www.carm.cc</url>
<timezone>Asia/Shanghai</timezone>
2021-12-11 16:09:19 +00:00
</developer>
</developers>
2021-12-15 12:08:16 +00:00
<scm>
<connection>scm:git:git@github.com:CarmJos/EasySQL.git</connection>
<developerConnection>scm:git:git@github.com:CarmJos/EasySQL.git</developerConnection>
<url>https://github.com/CarmJos/EasySQL</url>
<tag>HEAD</tag>
2021-12-15 12:08:16 +00:00
</scm>
2021-12-13 21:50:23 +00:00
<licenses>
<license>
2022-01-08 09:29:26 +00:00
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
2021-12-13 21:50:23 +00:00
</license>
</licenses>
2021-12-13 22:12:48 +00:00
2021-12-11 16:09:19 +00:00
<issueManagement>
<system>GitHub Issues</system>
2022-01-29 08:44:37 +00:00
<url>https://github.com/CarmJos/EasySQL/issues</url>
2021-12-11 16:09:19 +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-11 16:09:19 +00:00
</ciManagement>
<repositories>
<repository>
<id>carm-repo</id>
<name>Carm's Repo</name>
<url>https://repo.carm.cc/repository/maven-public/</url>
</repository>
<repository>
<id>nexus</id>
<url>https://mvn.lumine.io/repository/maven-public/</url>
</repository>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>github</id>
<name>GitHub Packages</name>
2021-12-13 22:12:48 +00:00
<url>https://maven.pkg.github.com/CarmJos/EasySQL</url>
2021-12-11 16:09:19 +00:00
</repository>
</repositories>
<distributionManagement>
2022-01-29 08:44:37 +00:00
<downloadUrl>https://github.com/CarmJos/EasySQL/releases</downloadUrl>
<site>
<id>easysql-javadoc</id>
<name>EasySQL JavaDoc (on Github Pages)</name>
2022-01-29 08:44:37 +00:00
<url>https://CarmJos.github.io/EasySQL</url>
</site>
2021-12-11 16:09:19 +00:00
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
2021-12-11 16:09:19 +00:00
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
2021-12-11 16:09:19 +00:00
</plugins>
2022-01-08 09:29:26 +00:00
2021-12-11 16:09:19 +00:00
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.8.0</version>
2021-12-11 16:09:19 +00:00
<configuration>
<classifier>javadoc</classifier>
2021-12-14 12:08:54 +00:00
<detectJavaApiLink>false</detectJavaApiLink>
<encoding>UTF-8</encoding>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<locale>zh_CN</locale>
<includeDependencySources>true</includeDependencySources>
<dependencySourceIncludes>
<dependencySourceInclude>cc.carm.lib:*</dependencySourceInclude>
</dependencySourceIncludes>
2021-12-11 16:09:19 +00:00
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
2021-12-11 16:09:19 +00:00
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
2021-12-11 16:09:19 +00:00
<encoding>UTF-8</encoding>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
2021-12-11 16:09:19 +00:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
2021-12-11 16:09:19 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
2021-12-11 16:09:19 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/*.txt</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
2021-12-11 16:09:19 +00:00
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2021-12-13 21:39:38 +00:00
2021-12-11 16:09:19 +00:00
</build>
<profiles>
<profile>
<id>ossrh</id>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/CarmJos/EasySQL</url>
</repository>
</distributionManagement>
</profile>
2022-05-29 20:37:02 +00:00
<profile>
<id>local</id>
<distributionManagement>
<snapshotRepository>
<id>localRepository</id>
<url>file:${user.home}/local-deploy/</url>
</snapshotRepository>
<repository>
<id>localRepository</id>
<url>file:${user.home}/local-deploy/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
2021-12-11 16:09:19 +00:00
2021-12-20 10:40:29 +00:00
</project>