mirror of
https://github.com/CarmJos/ScriptItems
synced 2026-06-05 04:42:31 +08:00
303 lines
11 KiB
XML
303 lines
11 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<properties>
|
|
<project.jdk.version>8</project.jdk.version>
|
|
<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>
|
|
|
|
<deps.easyplugin.version>1.5.14</deps.easyplugin.version>
|
|
<deps.easysql.version>0.4.7</deps.easysql.version>
|
|
<deps.mineconfig.version>3.1.3</deps.mineconfig.version>
|
|
</properties>
|
|
|
|
<groupId>cc.carm.plugin</groupId>
|
|
<artifactId>scriptitems</artifactId>
|
|
<version>1.1.2</version>
|
|
|
|
<name>ScriptItems</name>
|
|
<description>物品操作绑定插件,给予玩家可执行对应操作的物品,基于EasyPlugin实现。</description>
|
|
<url>https://github.com/carm-outsource/ScriptItems</url>
|
|
|
|
<issueManagement>
|
|
<system>GitHub Issues</system>
|
|
<url>https://github.com/carm-outsource/ScriptItems/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>GitHub Actions</system>
|
|
<url>https://github.com/carm-outsource/ScriptItems/actions/workflows/maven.yml</url>
|
|
</ciManagement>
|
|
|
|
<distributionManagement>
|
|
<downloadUrl>https://github.com/carm-outsource/ScriptItems/releases</downloadUrl>
|
|
</distributionManagement>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>CarmJos</id>
|
|
<name>Carm Jos</name>
|
|
<email>carm@carm.cc</email>
|
|
<url>https://work.carm.cc</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>github</id>
|
|
<name>GitHub Packages</name>
|
|
<url>https://maven.pkg.github.com/CarmJos/*</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>central</id>
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>nexus</id>
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>carm-repo</id>
|
|
<name>Carm's Repo</name>
|
|
<url>https://repo.carm.cc/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easysql-beecp</artifactId>
|
|
<version>${deps.easysql.version}</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easyplugin-main</artifactId>
|
|
<version>${deps.easyplugin.version}</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easyplugin-command</artifactId>
|
|
<version>${deps.easyplugin.version}</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easylistener</artifactId>
|
|
<version>2.0.1</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>easyplugin-githubchecker</artifactId>
|
|
<version>${deps.easyplugin.version}</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<artifactId>mineconfiguration-bukkit</artifactId>
|
|
<version>${deps.mineconfig.version}</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>3.1.0</version>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.21.10-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>io.papermc.paper</groupId>-->
|
|
<!-- <artifactId>paper-api</artifactId>-->
|
|
<!-- <version>1.21.10-R0.1-SNAPSHOT</version>-->
|
|
<!-- <scope>provided</scope>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>org.bukkit</groupId>-->
|
|
<!-- <artifactId>craftbukkit</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>org.spigotmc</groupId>-->
|
|
<!-- <artifactId>spigot-api</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.12.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<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>26.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
<configuration>
|
|
<filesets>
|
|
<fileset>
|
|
<directory>${project.basedir}/.asset/</directory>
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</fileset>
|
|
<fileset>
|
|
<directory>${project.basedir}/api-docs/</directory>
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</fileset>
|
|
</filesets>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.5.4</version>
|
|
<configuration>
|
|
<useSystemClassLoader>false</useSystemClassLoader>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.15.0</version>
|
|
<configuration>
|
|
<source>${project.jdk.version}</source>
|
|
<target>${project.jdk.version}</target>
|
|
<encoding>UTF-8</encoding>
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<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.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
<outputDirectory>${project.basedir}/.asset</outputDirectory>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>cc.carm.lib</pattern>
|
|
<shadedPattern>cc.carm.plugin.scriptitems.lib</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>cc.carm.plugin.scriptitems.lib.bstats</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.json</pattern>
|
|
<shadedPattern>cc.carm.plugin.scriptitems.lib.json</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
<exclude>META-INF/*.txt</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
|
|
</project> |