Skip to content

Commit

Permalink
Update readme, format pom.
Browse files Browse the repository at this point in the history
  • Loading branch information
LlmDl committed Sep 13, 2019
1 parent 2d11cee commit 65074b0
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 50 deletions.
7 changes: 6 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ After saving the config use /towny-tne reload to reload the config.

Read the below requirements to make sure you're using the required versions of Towny, TNE, and TNE's Mobs module.

## Upgrading
Towny-TNE uses the commentedconfiguration developed by dumptruckman, so you won't have to worry about your config when updating Towny-TNE.

New config values will be added with default settings and your old settings will be left intact.

## Requirements
Your server must be using the following versions or newer:

Expand All @@ -42,4 +47,4 @@ Your server must be using the following versions or newer:
* townytne.reload - allows use of ```/towny-tne reload```, defaults to ops.

## Credits
Obviously me, LlmDl, lead developer of Towny Advanced. As well as creatorfromhell, author of TheNewEconomy, who helped this make this plugin possible with the addition of key events to Mobs and TNE.
Obviously me, LlmDl, lead developer of Towny Advanced. As well as creatorfromhell, author of TheNewEconomy, who helped this make this plugin possible with the addition of key events to Mobs and TNE. Also worth mentioning is dumptruckman, who is responsible for the code used to make the config.
96 changes: 47 additions & 49 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,66 +6,64 @@
<name>Towny-TNE</name>
<description>A plugin that provides Towny-enabled manipulation of TNEMobs' drops.</description>
<properties>
<java.version>1.8</java.version>
<project.bukkitAPIVersion>1.14</project.bukkitAPIVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<project.bukkitAPIVersion>1.14</project.bukkitAPIVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<repository>
<id>tne-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
<id>tne-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>

</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.94.0.5</version>
<scope>system</scope>
<systemPath>C:\Users\Workstation\git\Towny\target\Towny-0.94.0.8.jar</systemPath>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Mobs</artifactId>
<version>0.1.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>TNE</artifactId>
<version>1.1.8.25</version>
<scope>provided</scope>
</dependency>
</dependencies>

<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.94.0.5</version>
<scope>system</scope>
<systemPath>C:\Users\Workstation\git\Towny\target\Towny-0.94.0.8.jar</systemPath>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Mobs</artifactId>
<version>0.1.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>TNE</artifactId>
<version>1.1.8.26</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 65074b0

Please sign in to comment.