-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also massively improved the Gradle script, bumped up the version, and added a release task. Signed-off-by: Mahtaran <[email protected]>
- Loading branch information
Showing
22 changed files
with
482 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,25 @@ | ||
.gradle/ | ||
.settings/ | ||
.metadata/ | ||
bin/ | ||
build/ | ||
run/ | ||
eclipse/ | ||
|
||
# eclipse | ||
bin | ||
*.launch | ||
.settings | ||
.metadata | ||
.classpath | ||
.project | ||
1.10_Client.launch | ||
1.10_Server.launch | ||
1.10_Client 2.launch | ||
sonarqube.sh | ||
|
||
GoreCore_ClientUUIDCache.txt | ||
/config | ||
logs/ | ||
options.txt | ||
saves/ | ||
usercache.json | ||
usernamecache.json | ||
screenshots/ | ||
|
||
crash-reports/ | ||
resourcepacks/ | ||
|
||
docs/.sass-cache | ||
docs/styles.css.map | ||
Client.launch | ||
Client 2.launch | ||
Server.launch | ||
|
||
**/.sass-cache | ||
**/.sass-cache/* | ||
.idea/ | ||
code.iml | ||
out/ | ||
|
||
# idea | ||
out | ||
classes | ||
*.ipr | ||
*.iws | ||
*.iml | ||
.idea | ||
|
||
# gradle | ||
build | ||
.gradle | ||
|
||
**/Thumbs.db | ||
# other | ||
eclipse | ||
run | ||
ignore* | ||
secrets.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
./gradlew clean build | ||
./gradlew cleanBuild | ||
read -n 1 -s -r -p "Press any key to continue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@echo off | ||
call gradlew clean build | ||
call gradlew cleanBuild | ||
pause |
Oops, something went wrong.