Skip to content

Commit 256989b

Browse files
committed
Remove Bukkit from dependencies
1 parent bede487 commit 256989b

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

.gitignore

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,33 @@ gradle-app.setting
117117
.gradletasknamecache
118118

119119
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
120-
# gradle/wrapper/gradle-wrapper.properties
120+
# gradle/wrapper/gradle-wrapper.properties
121+
122+
# macOS System Files
123+
# General
124+
.DS_Store
125+
.AppleDouble
126+
.LSOverride
127+
128+
# Icon must end with two \r
129+
Icon
130+
131+
132+
# Thumbnails
133+
._*
134+
135+
# Files that might appear in the root of a volume
136+
.DocumentRevisions-V100
137+
.fseventsd
138+
.Spotlight-V100
139+
.TemporaryItems
140+
.Trashes
141+
.VolumeIcon.icns
142+
.com.apple.timemachine.donotpresent
143+
144+
# Directories potentially created on remote AFP share
145+
.AppleDB
146+
.AppleDesktop
147+
Network Trash Folder
148+
Temporary Items
149+
.apdisk

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group 'com.samjakob'
7-
version '1.0-SNAPSHOT'
7+
version '1.2-SNAPSHOT'
88

99
repositories {
1010
mavenCentral()
@@ -23,9 +23,8 @@ repositories {
2323
dependencies {
2424
testCompile group: 'junit', name: 'junit', version: '4.12'
2525

26-
// Spigot & Bukkit APIs
26+
// Spigot API
2727
implementation group: 'org.spigotmc', name: 'spigot-api', version: '1.8.8-R0.1-SNAPSHOT'
28-
implementation group: 'org.bukkit', name: 'bukkit', version: '1.8.8-R0.1-SNAPSHOT'
2928
}
3029

3130
task testJar(type: Jar) {

src/main/java/com/samjakob/spigui/SpiGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* <a href="https://github.com/SamJakob/SpiGUI">https://github.com/SamJakob/SpiGUI</a>
1919
*
2020
* @author SamJakob
21-
* @version 2.0.0
21+
* @version 1.2.0
2222
*/
2323
public class SpiGUI {
2424

0 commit comments

Comments
 (0)