1 Star 0 Fork 3

伟大航路/BanItem

forked from 聪聪/BanItem 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.41 KB
一键复制 编辑 原始数据 按行查看 历史
聪聪 提交于 2020-03-26 22:08 . 1.13-1.15.2兼容
<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>
<groupId>cc.bukkitPlugin</groupId>
<artifactId>banitem</artifactId>
<version>3.2.5</version>
<name>BanItem</name>
<description>一个禁用物品的插件</description>
<build>
<finalName>${project.name}_with_NBT_v${project.version}<!--_${maven.build.timestamp}--></finalName>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resource</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<fork>true</fork>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<configuration>
<minimizeJar>false</minimizeJar>
<createSourcesJar>true</createSourcesJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>cc.commons:commons-util</include>
<include>cc.commons:commons-commentedyaml</include>
<include>cc.bukkitPlugin.commons:commons-pluginbase</include>
<include>cc.bukkitPlugin.commons:commons-nmsutil</include>
<include>cc.bukkitPlugin.commons:commons-tellraw</include>
<include>cc.bukkitPlugin.commons:commons-local</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>cc.bukkitPlugin.commons</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.commons</shadedPattern>
</relocation>
<relocation>
<pattern>cc.commons</pattern>
<shadedPattern>${project.groupId}.${project.artifactId}.commons</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
</properties>
<repositories>
</repositories>
<dependencies>
<dependency>
<groupId>cc.bukkitPlugin.commons</groupId>
<artifactId>commons-pluginbase</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>cc.bukkitPlugin.commons</groupId>
<artifactId>commons-nmsutil</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wdhx/BanItem.git
git@gitee.com:wdhx/BanItem.git
wdhx
BanItem
BanItem
3.0-Flag

搜索帮助