Initial setup.
Setup maven, copy readme from v1.
This commit is contained in:
		
							
								
								
									
										32
									
								
								ItemCase/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								ItemCase/pom.xml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
<?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>
 | 
			
		||||
    
 | 
			
		||||
    <groupId>com.gmail.bleedobsidian</groupId>
 | 
			
		||||
    <artifactId>ItemCase</artifactId>
 | 
			
		||||
    <name>ItemCase</name>
 | 
			
		||||
    <description>ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as shops.</description>
 | 
			
		||||
    <version>2.0.0</version>
 | 
			
		||||
    <packaging>pom</packaging>
 | 
			
		||||
    
 | 
			
		||||
    
 | 
			
		||||
    <properties>
 | 
			
		||||
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | 
			
		||||
    </properties>
 | 
			
		||||
    
 | 
			
		||||
    <repositories>
 | 
			
		||||
        <repository>
 | 
			
		||||
            <id>spigot-repo</id>
 | 
			
		||||
            <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
 | 
			
		||||
        </repository>
 | 
			
		||||
    </repositories>
 | 
			
		||||
    
 | 
			
		||||
    <dependencies>
 | 
			
		||||
        <dependency> <!-- Spigot -->
 | 
			
		||||
            <groupId>org.spigotmc</groupId>
 | 
			
		||||
            <artifactId>spigot</artifactId>
 | 
			
		||||
            <version>1.12-R0.1-SNAPSHOT</version>
 | 
			
		||||
            <scope>provided</scope>
 | 
			
		||||
        </dependency>
 | 
			
		||||
    </dependencies>
 | 
			
		||||
</project>
 | 
			
		||||
							
								
								
									
										36
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										36
									
								
								README.md
									
									
									
									
									
								
							@@ -1,2 +1,36 @@
 | 
			
		||||
# ItemCase
 | 
			
		||||
ItemCase
 | 
			
		||||
========
 | 
			
		||||
 | 
			
		||||
ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as shops.
 | 
			
		||||
 | 
			
		||||
[Bukkit] Page
 | 
			
		||||
 | 
			
		||||
[Javadoc] Documentation
 | 
			
		||||
 | 
			
		||||
Source
 | 
			
		||||
------
 | 
			
		||||
The latest and greatest source can be found on [GitHub].  
 | 
			
		||||
Download the latest builds on [Bukkit].
 | 
			
		||||
 | 
			
		||||
Compiling
 | 
			
		||||
---------
 | 
			
		||||
ItemCase uses Maven to handle its dependencies.
 | 
			
		||||
 | 
			
		||||
* Install [Maven 2 or 3](http://maven.apache.org/download.html)  
 | 
			
		||||
* Checkout this repo and run: `mvn clean`
 | 
			
		||||
 | 
			
		||||
Coding and Pull Request Formatting
 | 
			
		||||
----------------------------------
 | 
			
		||||
* Generally follow the Oracle coding standards.
 | 
			
		||||
* Use spaces not tabs.
 | 
			
		||||
* No trailing whitespaces.
 | 
			
		||||
* Pull requests must compile and work correctly.
 | 
			
		||||
* Pull requests must be formatted properly.
 | 
			
		||||
* Number of commits in a pull request should be kept to a minimum.
 | 
			
		||||
 | 
			
		||||
**Please try to follow the above conventions if you want your pull request(s) accepted.**
 | 
			
		||||
 | 
			
		||||
[License]: http://www.gnu.org/licenses/gpl.html
 | 
			
		||||
[GitHub]: http://github.com/BleedObsidian/ItemCase/
 | 
			
		||||
[Bukkit]: http://dev.bukkit.org/bukkit-plugins/itemcase/
 | 
			
		||||
[Javadoc]: http://bleedobsidian.github.io/ItemCase/
 | 
			
		||||
							
								
								
									
										13
									
								
								pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								pom.xml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,13 @@
 | 
			
		||||
<?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>
 | 
			
		||||
    <groupId>com.gmail.bleedobsidian</groupId>
 | 
			
		||||
    <artifactId>ItemCases</artifactId>
 | 
			
		||||
    <version>2.0.0</version>
 | 
			
		||||
    <packaging>jar</packaging>
 | 
			
		||||
    <properties>
 | 
			
		||||
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | 
			
		||||
        <maven.compiler.source>1.8</maven.compiler.source>
 | 
			
		||||
        <maven.compiler.target>1.8</maven.compiler.target>
 | 
			
		||||
    </properties>
 | 
			
		||||
</project>
 | 
			
		||||
		Reference in New Issue
	
	Block a user