To continue providing renamed ender chests/player inventories we can no longer just provide an Inventory, a full InventoryView is required. To avoid confusion the old method has been removed entirely, leading to a major API revision bump.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<!--
 | 
						|
  ~ Copyright (C) 2011-2018 lishid. All rights reserved.
 | 
						|
  ~
 | 
						|
  ~ 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/>.
 | 
						|
  -->
 | 
						|
 | 
						|
<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>
 | 
						|
    <artifactId>openinvplugin</artifactId>
 | 
						|
    <version>4.0.0-SNAPSHOT</version>
 | 
						|
  </parent>
 | 
						|
 | 
						|
  <artifactId>openinvpluginv1_10_r1</artifactId>
 | 
						|
  <name>OpenInvPluginv1_10_R1</name>
 | 
						|
 | 
						|
  <dependencies>
 | 
						|
    <dependency>
 | 
						|
      <groupId>org.bukkit</groupId>
 | 
						|
      <artifactId>bukkit</artifactId>
 | 
						|
      <version>1.10-R0.1-SNAPSHOT</version>
 | 
						|
      <scope>provided</scope>
 | 
						|
    </dependency>
 | 
						|
    <dependency>
 | 
						|
      <groupId>com.lishid</groupId>
 | 
						|
      <artifactId>openinvcommon</artifactId>
 | 
						|
      <version>4.0.0-SNAPSHOT</version>
 | 
						|
    </dependency>
 | 
						|
  </dependencies>
 | 
						|
 | 
						|
</project>
 |