Skip to content

Commit

Permalink
UUID support
Browse files Browse the repository at this point in the history
  • Loading branch information
slide23 committed Feb 7, 2015
1 parent 2fa2f56 commit 0622173
Show file tree
Hide file tree
Showing 7 changed files with 336 additions and 53 deletions.
7 changes: 7 additions & 0 deletions plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ commands:
permission: modreq.mod
usage: |
/<command> <add|remove> <#> <body|note-id>
mr-upgrade:
description: Upgrade the database
permission: modreq.upgrade
usage: |
/<command>
permissions:
modreq:
Expand All @@ -80,6 +85,8 @@ permissions:
description: Allow a player to receive modreq broadcasts
modreq.cleardb:
description: Allow a player to clear the database.
modreq.upgrade:
description: Upgrade the database
modreq.request:
description: Allow a player to submit a request
default: true
38 changes: 36 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<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">
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>nu.nerd</groupId>
<artifactId>ModReq</artifactId>
<version>1.5</version>
<version>1.6</version>
<packaging>jar</packaging>
<name>ModReq</name>
<properties>
Expand All @@ -17,6 +17,11 @@
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gestern</groupId>
<artifactId>bukkit-migration-tools</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
Expand All @@ -36,6 +41,11 @@
<id>repobo-snap</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
<repository>
<id>znode-releases</id>
<name>znode-releases</name>
<url>http://repo.zno.de/artifactory/libs-release-local</url>
</repository>
</repositories>

<pluginRepositories>
Expand Down Expand Up @@ -91,5 +101,29 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<shadedClassifierName>Bundle</shadedClassifierName>
<artifactSet>
<includes>
<include>org.gestern:bukkit-migration-tools:jar:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 0622173

Please sign in to comment.