mirror of
https://github.com/CarmJos/MineSQL.git
synced 2026-06-04 16:43:03 +08:00
174 lines
5.9 KiB
XML
174 lines
5.9 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>minesql-parent</artifactId>
|
|
<groupId>cc.carm.plugin</groupId>
|
|
<version>1.4.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<properties>
|
|
<maven.compiler.source>${project.jdk.version}</maven.compiler.source>
|
|
<maven.compiler.target>${project.jdk.version}</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
<artifactId>minesql-core</artifactId>
|
|
|
|
<name>MineSQL-Core</name>
|
|
<description>轻松(用)SQL的独立运行库插件的主要实现部分。</description>
|
|
<url>https://github.com/CarmJos/MineSQL</url>
|
|
|
|
<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>
|
|
<role>Designer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License v3.0</name>
|
|
<url>https://opensource.org/licenses/GPL-3.0</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
<system>GitHub Issues</system>
|
|
<url>https://github.com/CarmJos/MineSQL/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>GitHub Actions</system>
|
|
<url>https://github.com/CarmJos/MineSQL/actions/workflows/maven.yml</url>
|
|
</ciManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>${project.parent.groupId}</groupId>
|
|
<artifactId>minesql-api</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>co.aikar</groupId>
|
|
<artifactId>acf-core</artifactId>
|
|
<version>0.5.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.chris2018998</groupId>
|
|
<artifactId>beecp</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easysql-impl</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easyplugin-githubchecker</artifactId>
|
|
<version>${deps.easyplugin.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easyplugin-utils</artifactId>
|
|
<version>${deps.easyplugin.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>configured-yaml</artifactId>
|
|
<version>${deps.easyconf.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>filter-version</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/templates</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-source</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>${project.build.directory}/generated-sources/java</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |