Skip to content

Commit

Permalink
Use Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
osvein committed May 14, 2015
1 parent 0a8fa6f commit d952ca8
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 42 deletions.
11 changes: 0 additions & 11 deletions .classpath

This file was deleted.

11 changes: 8 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

bin/
lib/
# Maven output
target

# Markdown previews
.*.md.html
.*.md.html
# Eclipse metadata
.classpath
.project
.settings/

17 changes: 0 additions & 17 deletions .project

This file was deleted.

55 changes: 55 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<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>no.atc.floyd.bukkit.kit</groupId>
<artifactId>kitplugin</artifactId>
<version>1.31</version>

<parent>
<groupId>no.atc</groupId>
<artifactId>super-pom-bukkit</artifactId>
<version>1.2</version>
</parent>

<name>KitPlugin</name>
<url>https://github.com/Ano-Tech-Computers/KitPlugin</url>
<description>Dispense kits to players</description>

<licenses>
<license>
<name>MIT License</name>
<url>LICENSE</url>
<distribution>repo</distribution>
<comments>Permissive open source</comments>
</license>
</licenses>

<repositories>
<repository>
<id>warehouse14</id>
<url>https://raw.githubusercontent.com/Ano-Tech-Computers/Warehouse14/maven</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
File renamed without changes.
File renamed without changes.
22 changes: 11 additions & 11 deletions src/plugin.yml → src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: KitPlugin
main: no.atc.floyd.bukkit.kit.KitPlugin
version: 1.31
website: http://minecraft.atc.no/plugins
author: FloydATC
description: >
Dispense kits to players
commands:
kit:
description: Show a list of kit names or get a named kit
usage: /<command> [<kit>] [<players>]
name: "${project.name}"
main: no.atc.floyd.bukkit.kit.KitPlugin
version: "${project.version}"
website: "${project.url}"
author: FloydATC
description: "${project.description}"

commands:
kit:
description: Show a list of kit names or get a named kit
usage: /<command> [<kit>] [<players>]

0 comments on commit d952ca8

Please sign in to comment.