Skip to content

Commit

Permalink
Merge pull request #2 from hwalker928/master
Browse files Browse the repository at this point in the history
Updated to Gradle
  • Loading branch information
BetTD committed Feb 2, 2021
2 parents bcde58e + 73bf5c3 commit a2807c3
Show file tree
Hide file tree
Showing 23 changed files with 456 additions and 207 deletions.
104 changes: 98 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# User-specific stuff
.idea/

*.iml
*.ipr
*.iws

# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Compiled class file
*.class

Expand All @@ -7,9 +22,6 @@
# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
Expand All @@ -21,6 +33,86 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
.idea/workspace.xml
.idea/workspace.xml
*.xml

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

.gradle
build/

# Ignore Gradle GUI config
gradle-app.setting

# Cache of project
.gradletasknamecache

**/build/

# Common working directory
run/

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
8 changes: 0 additions & 8 deletions .idea/artifacts/PteroBungee.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/libraries/BungeeCord.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

100 changes: 0 additions & 100 deletions .idea/workspace.xml

This file was deleted.

12 changes: 0 additions & 12 deletions BungeeStuff.iml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ For the "Stop" button, this was an easier fix. It creates a command called `stop
- It does not override the original `/stop` functionality in Bukkit/Spigot servers.
## How to install
1. Shut down your BungeeCord instance: first click on the Stop button on your Pterodactyl panel andthen type `end` in console.
2. Upload `PteroBungee-v1.1.0.jar` to the "plugins" folder.
2. Upload `PteroBungee-v1.2.0.jar` to the "plugins" folder.
3. Start the BungeeCord instance.
## Download
- Download from [BetTD.me](https://builds.bettd.me/java/bungeecord/pterobungee/).
- Download from [GitHub](https://github.com/sparkedhost/PteroBungee/releases).
- Download from [Direct](https://data.harrydev.me/PteroBungee/PteroBungee-1.2.0.jar).
- Download from [GitHub](https://github.com/sparkedhost/PteroBungee/releases).
19 changes: 19 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id 'java'
}

group = 'us.sparkedhost'
version = '1.2.0'

repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
compileOnly 'net.md-5:bungeecord-api:1.16-R0.4'
}

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Empty file added gradle.properties
Empty file.
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit a2807c3

Please sign in to comment.