1
mirror of https://github.com/CarmJos/MineSQL.git synced 2024-09-19 20:25:45 +00:00
MineSQL/core/pom.xml

122 lines
3.9 KiB
XML
Raw Permalink Normal View History

2022-01-26 15:11:35 +00:00
<?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>
2022-01-26 15:11:35 +00:00
<groupId>cc.carm.plugin</groupId>
<version>1.4.1</version>
2022-01-26 15:11:35 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
2022-09-26 14:25:28 +00:00
<maven.compiler.source>${project.jdk.version}</maven.compiler.source>
<maven.compiler.target>${project.jdk.version}</maven.compiler.target>
2022-01-26 15:11:35 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
2022-01-26 15:20:42 +00:00
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.deploy.skip>true</maven.deploy.skip>
2022-01-26 15:11:35 +00:00
</properties>
<artifactId>minesql-core</artifactId>
2022-01-26 15:11:35 +00:00
<name>MineSQL-Core</name>
2022-02-23 21:11:31 +00:00
<description>轻松(用)SQL的独立运行库插件的主要实现部分。</description>
<url>https://github.com/CarmJos/MineSQL</url>
2022-02-23 21:11:31 +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>
<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>
2022-02-23 21:11:31 +00:00
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/CarmJos/MineSQL/actions/workflows/maven.yml</url>
2022-02-23 21:11:31 +00:00
</ciManagement>
2022-01-26 15:11:35 +00:00
<dependencies>
<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>minesql-api</artifactId>
2022-01-26 15:11:35 +00:00
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
2022-02-21 18:59:18 +00:00
<dependency>
<groupId>co.aikar</groupId>
<artifactId>acf-core</artifactId>
<version>0.5.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.byteflux</groupId>
<artifactId>libby-core</artifactId>
<version>${deps.libby.version}</version>
<scope>compile</scope>
</dependency>
2022-01-26 15:11:35 +00:00
<dependency>
<groupId>com.github.chris2018998</groupId>
<artifactId>beecp</artifactId>
<scope>provided</scope>
2022-01-26 15:11:35 +00:00
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>easysql-impl</artifactId>
<scope>compile</scope>
</dependency>
2022-09-26 14:25:28 +00:00
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>easyplugin-githubchecker</artifactId>
2022-12-17 19:04:35 +00:00
<version>${deps.easyplugin.version}</version>
2022-09-26 14:25:28 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>easyplugin-utils</artifactId>
2022-12-17 19:04:35 +00:00
<version>${deps.easyplugin.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>easyconfiguration-yaml</artifactId>
2022-12-17 19:04:35 +00:00
<version>${deps.easyconf.version}</version>
<scope>compile</scope>
</dependency>
2022-01-26 15:11:35 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>