-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from Picono435/development
Updated to 1.0-beta-3b
- Loading branch information
Showing
163 changed files
with
657 additions
and
4,892 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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Development Builds | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- translations | ||
|
||
jobs: | ||
build-java16: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 16 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '16' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
|
||
build-java11: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
|
||
build-java8: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
- name: Upload Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: Builds | ||
path: build/libs/*.jar |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Stable Builds | ||
|
||
on: | ||
push: | ||
branches: [ production ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
env: | ||
STABLE_BUILD: 0 | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
env: | ||
STABLE_BUILD: 0 | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
- name: Upload Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: Builds | ||
path: build/libs/*.jar |
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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Unofficial Builds | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
build-java16: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 16 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '16' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
|
||
build-java11: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
|
||
build-java8: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Tests with Gradle | ||
run: ./gradlew test | ||
- name: Build with Gradle | ||
run: ./gradlew shadowJar | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1 | ||
if: always() | ||
with: | ||
files: build/test-results/**/*.xml | ||
- name: Upload Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: Builds | ||
path: build/libs/*.jar |
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,5 +1,134 @@ | ||
# Ignore Gradle project-specific cache directory | ||
# This is just filled with random stuff... just ignore lol | ||
|
||
# User-specific stuff | ||
.idea/ | ||
.vscode/ | ||
.metadata/ | ||
.settings/ | ||
bin/ | ||
.classpath | ||
.factorypath | ||
.project | ||
build/ | ||
|
||
*.iml | ||
*.ipr | ||
*.iws | ||
|
||
# IntelliJ | ||
out/ | ||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
*~ | ||
|
||
# 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/ | ||
|
||
# Ignore Gradle build output directory | ||
build | ||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) | ||
!gradle-wrapper.jar | ||
password.txt | ||
!lib/** | ||
.dev | ||
**.class | ||
.gradle/ | ||
bin/** |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-909 Bytes
bin/main/com/gmail/picono435/picojobs/api/EconomyImplementation.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.63 KB
bin/main/com/gmail/picono435/picojobs/api/events/PlayerEnterJobEvent.class
Binary file not shown.
Binary file removed
BIN
-1.64 KB
bin/main/com/gmail/picono435/picojobs/api/events/PlayerFinishWorkEvent.class
Binary file not shown.
Binary file removed
BIN
-1.4 KB
bin/main/com/gmail/picono435/picojobs/api/events/PlayerLeaveJobEvent.class
Binary file not shown.
Binary file removed
BIN
-1.4 KB
bin/main/com/gmail/picono435/picojobs/api/events/PlayerStartWorkEvent.class
Binary file not shown.
Binary file removed
BIN
-1.29 KB
bin/main/com/gmail/picono435/picojobs/api/events/PlayerWithdrawEvent.class
Binary file not shown.
Binary file removed
BIN
-2.03 KB
bin/main/com/gmail/picono435/picojobs/api/managers/JobsManager.class
Binary file not shown.
Binary file removed
BIN
-5.14 KB
bin/main/com/gmail/picono435/picojobs/api/managers/LanguageManager.class
Binary file not shown.
Binary file removed
BIN
-4.71 KB
bin/main/com/gmail/picono435/picojobs/api/managers/PlayersManager.class
Binary file not shown.
Binary file removed
BIN
-3.13 KB
bin/main/com/gmail/picono435/picojobs/api/managers/SettingsManager.class
Binary file not shown.
Binary file removed
BIN
-12.2 KB
bin/main/com/gmail/picono435/picojobs/commands/JobsAdminCommand.class
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-5.6 KB
bin/main/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.26 KB
bin/main/com/gmail/picono435/picojobs/hooks/economy/ExpImplementation.class
Binary file not shown.
Binary file removed
BIN
-1.55 KB
bin/main/com/gmail/picono435/picojobs/hooks/economy/PointsImplementation.class
Binary file not shown.
Binary file removed
BIN
-1.67 KB
bin/main/com/gmail/picono435/picojobs/hooks/economy/TokenManagerImplementation.class
Binary file not shown.
Binary file removed
BIN
-1.5 KB
bin/main/com/gmail/picono435/picojobs/hooks/economy/VaultImplementation.class
Binary file not shown.
Binary file removed
BIN
-1.54 KB
bin/main/com/gmail/picono435/picojobs/hooks/expansions/JobPlayerExpansion.class
Binary file not shown.
Binary file removed
BIN
-1.85 KB
bin/main/com/gmail/picono435/picojobs/listeners/AliasesListeners.class
Binary file not shown.
Binary file removed
BIN
-6.65 KB
bin/main/com/gmail/picono435/picojobs/listeners/ClickInventoryListener.class
Binary file not shown.
Binary file removed
BIN
-2.2 KB
bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener$1.class
Binary file not shown.
Binary file removed
BIN
-3.69 KB
bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener.class
Binary file not shown.
Binary file removed
BIN
-2.51 KB
bin/main/com/gmail/picono435/picojobs/listeners/ExecuteCommandListener.class
Binary file not shown.
Binary file removed
BIN
-2.96 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/BreakListener.class
Binary file not shown.
Binary file removed
BIN
-3.02 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/CraftListener.class
Binary file not shown.
Binary file removed
BIN
-2.24 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/EatListener.class
Binary file not shown.
Binary file removed
BIN
-2.26 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/EnchantListener.class
Binary file not shown.
Binary file removed
BIN
-2.35 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/FillListener.class
Binary file not shown.
Binary file removed
BIN
-2.58 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/FisherListener.class
Binary file not shown.
Binary file removed
BIN
-2.29 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillEntityListener.class
Binary file not shown.
Binary file removed
BIN
-2.2 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillerListener.class
Binary file not shown.
Binary file removed
BIN
-2.23 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/MilkListener.class
Binary file not shown.
Binary file removed
BIN
-2.22 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/PlaceListener.class
Binary file not shown.
Binary file removed
BIN
-2.98 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/RepairListener.class
Binary file not shown.
Binary file removed
BIN
-2.28 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/ShearListener.class
Binary file not shown.
Binary file removed
BIN
-3.3 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.class
Binary file not shown.
Binary file removed
BIN
-2.24 KB
bin/main/com/gmail/picono435/picojobs/listeners/jobs/TameListener.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-988 Bytes
bin/main/com/gmail/picono435/picojobs/storage/StorageFactory.class
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.47 KB
bin/main/com/gmail/picono435/picojobs/storage/cache/CacheManager.class
Binary file not shown.
Binary file removed
BIN
-3.9 KB
bin/main/com/gmail/picono435/picojobs/storage/file/ConfigurationStorageFactory.class
Binary file not shown.
Binary file removed
BIN
-1.69 KB
bin/main/com/gmail/picono435/picojobs/storage/file/HoconStorage.class
Binary file not shown.
Binary file removed
BIN
-1.78 KB
bin/main/com/gmail/picono435/picojobs/storage/file/JsonStorage.class
Binary file not shown.
Binary file removed
BIN
-2.8 KB
bin/main/com/gmail/picono435/picojobs/storage/file/YamlStorage.class
Binary file not shown.
Binary file removed
BIN
-6.24 KB
bin/main/com/gmail/picono435/picojobs/storage/mongodb/MongoStorage.class
Binary file not shown.
Binary file removed
BIN
-7.88 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/HikariStorageFactory.class
Binary file not shown.
Binary file removed
BIN
-2.95 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/MariaDbStorage.class
Binary file not shown.
Binary file removed
BIN
-2.9 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/MySqlStorage.class
Binary file not shown.
Binary file removed
BIN
-2.94 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/PostgreStorage.class
Binary file not shown.
Binary file removed
BIN
-7.71 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/file/FlatfileStorageFactory.class
Binary file not shown.
Binary file removed
BIN
-2.32 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/file/H2Storage.class
Binary file not shown.
Binary file removed
BIN
-2.39 KB
bin/main/com/gmail/picono435/picojobs/storage/sql/file/SqliteStorage.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.