Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Eclipse
.classpath
.project
.settings/

# Intellij
.idea/
*.iml
*.iws
SaberGenerators.iml

# Mac
.DS_Store

# Maven
log/
target/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SaberCore 3
The Ultimate Core For Any Factions Server
## Contributing:
#### Prerequisite:
* Maven
* Git
* An IDE
### Steps:
* Clone the repository
* Add [fanciful](https://github.com/mkremins/fanciful/) dependency to your maven local repo: Sabecore utilize fanciful for deathmessages, so go to your .m2 directory create a directory named 'mkremins' and copy paste fanciful directory there
Binary file removed dependencies/worldedit-bukkit-6.1.jar
Binary file not shown.
Binary file removed dependencies/worldguard-bukkit-6.2.2.jar
Binary file not shown.
80 changes: 0 additions & 80 deletions dependency-reduced-pom.xml

This file was deleted.

4 changes: 4 additions & 0 deletions fanciful/0.3.5.1/_remote.repositories
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Wed Sep 18 20:21:11 CEST 2019
fanciful-0.3.5.1.jar>=
fanciful-0.3.5.1.pom>=
Binary file added fanciful/0.3.5.1/fanciful-0.3.5.1.jar
Binary file not shown.
9 changes: 9 additions & 0 deletions fanciful/0.3.5.1/fanciful-0.3.5.1.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>mkremins</groupId>
<artifactId>fanciful</artifactId>
<version>0.3.5.1</version>
<description>POM was created from install:install-file</description>
</project>
79 changes: 59 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>coreprotect-repo</id>
<url>http://maven.playpro.com/</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
</repositories>

<dependencies>
Expand Down Expand Up @@ -61,30 +69,62 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper</artifactId>
<version>1.1.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>me.fanciful</groupId>
<groupId>mkremins</groupId>
<artifactId>fanciful</artifactId>
<version>0.4.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/dependencies/fanciful-0.3.5.1.jar</systemPath>
<version>0.3.5.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-legacy</artifactId>
<version>6.2.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/dependencies/worldguard-bukkit-6.2.2.jar</systemPath>
<version>6.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-legacy</artifactId>
<version>6.2.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/dependencies/worldedit-bukkit-6.1.jar</systemPath>
<artifactId>worldedit-bukkit</artifactId>
<version>6.1.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-core</artifactId>
<version>6.1.4-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>de.schlichtherle</groupId>
<artifactId>truezip</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<exclusion>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
</exclusion>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<exclusion>
<groupId>com.thoughtworks.paranamer</groupId>
<artifactId>paranamer</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q.lib</groupId>
<artifactId>jlibnoise</artifactId>
</exclusion>
<exclusion>
<groupId>com.sk89q</groupId>
<artifactId>jchronic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.massivecraft</groupId>
Expand All @@ -101,11 +141,10 @@
<systemPath>${project.basedir}/dependencies/Factions.jar</systemPath>
</dependency>
<dependency>
<groupId>com.coreprotect</groupId>
<groupId>net.coreprotect</groupId>
<artifactId>coreprotect</artifactId>
<scope>system</scope>
<version>2.0</version>
<systemPath>${project.basedir}/dependencies/CoreProtect_2.12.0.jar</systemPath>
<version>2.16.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
Expand Down