2018-02-04 15:29:07 +00:00
|
|
|
<!--
|
2020-02-01 13:03:15 +00:00
|
|
|
~ Copyright (C) 2011-2020 lishid. All rights reserved.
|
2018-02-04 15:29:07 +00:00
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, version 3.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2016-11-25 13:01:44 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.lishid</groupId>
|
2016-12-01 02:26:56 +00:00
|
|
|
<artifactId>openinvparent</artifactId>
|
2020-07-16 03:23:31 +00:00
|
|
|
<version>4.1.4-SNAPSHOT</version>
|
2016-11-25 13:01:44 +00:00
|
|
|
</parent>
|
|
|
|
|
2019-05-05 22:03:22 +00:00
|
|
|
<artifactId>openinvplugincore</artifactId>
|
2016-11-25 13:01:44 +00:00
|
|
|
<name>OpenInvPlugin</name>
|
|
|
|
|
2019-05-05 22:03:22 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.lishid</groupId>
|
2020-03-25 01:01:59 +00:00
|
|
|
<artifactId>openinvapi</artifactId>
|
2020-07-16 03:23:31 +00:00
|
|
|
<version>4.1.4-SNAPSHOT</version>
|
2019-05-05 22:03:22 +00:00
|
|
|
</dependency>
|
2019-05-28 00:05:06 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-03-25 01:01:59 +00:00
|
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
2019-05-28 00:05:06 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-05 22:03:22 +00:00
|
|
|
</dependencies>
|
2016-11-25 13:01:44 +00:00
|
|
|
|
2019-05-05 22:03:22 +00:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2019-05-28 00:05:06 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-03-25 01:01:59 +00:00
|
|
|
<version>3.2.2</version>
|
2019-05-28 00:05:06 +00:00
|
|
|
<configuration>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2019-05-05 22:03:22 +00:00
|
|
|
</build>
|
2016-11-25 13:01:44 +00:00
|
|
|
|
2018-02-04 15:29:07 +00:00
|
|
|
</project>
|