Skip to content
This repository was archived by the owner on Aug 22, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d7513c0
Switched to Spigot's repository for 1.8
Jikoo Jul 28, 2015
8401cba
Fixed Metrics using outdated API
Jikoo Jul 28, 2015
f3d4b69
Removed unused imports
Jikoo Jul 28, 2015
185810f
Convert \r\n to \r, use consistent formatting
Jikoo Jul 28, 2015
81dd541
Simplified color management slightly.
Jikoo Jul 28, 2015
3b1b27a
Remove (relatively) unneccessary YML class
Jikoo Jul 28, 2015
81e5b64
Remove unused field, update to Java 7
Jikoo Jul 28, 2015
5427f91
Removed static access
Jikoo Jul 28, 2015
8fee79e
Removed ChatUtils, 90% of the features are unused.
Jikoo Jul 29, 2015
7a2de97
Add config option preserve-named-entities to protect named entities
Jikoo Jul 29, 2015
944d201
Downgraded Maven compiler version and properly organized project
Jikoo Jul 29, 2015
2771cb6
Bugfix, minor formatting. Bumped version for release.
Jikoo Jul 29, 2015
617c8d8
Don't enable unneccessary listeners, disable if no listeners enabled
Jikoo Jul 30, 2015
9ef4c7d
Add config option properties.prevent-creature-spawns to stop new spaw…
Jikoo Jul 30, 2015
2f8384f
Don't check spawned creature's chunk twice during CreatureSpawnEvent
Jikoo Jul 30, 2015
a5fbb7d
Updated to Metrics revision 7
Jikoo Jul 30, 2015
7b10b8b
Revert change to Java 7
Jikoo Jul 30, 2015
c89c44e
A little more cleanup.
Jikoo Jul 30, 2015
aae20ea
Fixed inverted logic and main class name, added prefix to cull message
Jikoo Jul 30, 2015
de49d8c
Follow conventions, don't start package names with capitals.
Jikoo Jul 31, 2015
27a81d7
don't remove players
McLive Aug 21, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 45 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,34 +1,46 @@
<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>ChunkSpawnerLimiter</groupId>
<artifactId>ChunkSpawnerLimiter</artifactId>
<version>0.0.1</version>
<name>ChunkSpawnerLimiter</name>
<description>Limit entities in chunks. </description>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.7.9-R0.1</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
</repositories>
<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>ChunkSpawnerLimiter</groupId>
<artifactId>ChunkSpawnerLimiter</artifactId>
<version>0.0.1</version>
<name>ChunkSpawnerLimiter</name>
<description>Limit entities in chunks. </description>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.yml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>false</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
</project>
99 changes: 0 additions & 99 deletions src/com/cyprias/ChunkSpawnerLimiter/ChatUtils.java

This file was deleted.

43 changes: 0 additions & 43 deletions src/com/cyprias/ChunkSpawnerLimiter/Config.java

This file was deleted.

101 changes: 0 additions & 101 deletions src/com/cyprias/ChunkSpawnerLimiter/Logger.java

This file was deleted.

Loading