Skip to content

Commit

Permalink
Merge branch 'beta' of https://github.com/Fernthedev/FernAPI into beta
Browse files Browse the repository at this point in the history
� Conflicts:
�	.idea/checkstyle-idea.xml
  • Loading branch information
Fernthedev committed Dec 17, 2019
2 parents edd55f8 + 3b8e66f commit 3e89db8
Show file tree
Hide file tree
Showing 127 changed files with 473 additions and 280 deletions.
16 changes: 0 additions & 16 deletions .idea/checkstyle-idea.xml

This file was deleted.

80 changes: 0 additions & 80 deletions .idea/modules/com.github.fernthedev.FernAPI.main.iml

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,18 +81,18 @@ For maven: https://maven.apache.org/plugins/maven-shade-plugin/usage.html

[ve] = Velocity (Should work)

[u] = All of the above, in other words universal
[u] = All of the above, in other words com.github.fernthedev.fernapi.com.github.fernthedev.fernapi.universal

- [UUID Fetch](#uuid-fetch) [u] [ve]
- [ChatAPI](#chatapi) [u] [vat]
- Clickable text
- Hover message
- Color code support
- [List sorter (Sorter Class, check methods)](https://github.com/Fernthedev/FernAPI/blob/master/src/main/java/com/github/fernthedev/fernapi/universal/Sorter.java) [u]
- [List sorter (Sorter Class, check methods)](https://github.com/Fernthedev/FernAPI/blob/master/src/main/java/com/github/fernthedev/fernapi/com.github.fernthedev.fernapi.com.github.fernthedev.fernapi.universal/Sorter.java) [u]
- [Bungee/Spigot/Sponge/Velocity plugin messaging](#bungeespigotspongevelocity-plugin-messaging-must-implement-pluginmessagehandler) [u*] [vat]
- *Sponge has not been fully tested, please feel free to report any bugs at issues at repo.
- [MySQL](#mysql) [u] [vat]
- [Universal Commands](#universal-commands) [u] [vet]
- [Universal Commands](#com.github.fernthedev.fernapi.com.github.fernthedev.fernapi.universal-commands) [u] [vet]

## Usage:
Main class should extend one of these classes respectively.
Expand Down Expand Up @@ -230,7 +230,7 @@ Universal.getMessageHandler().sendPluginData(fplayer,data);
```

### MySQL
Example usage can be found [here](https://github.com/Fernthedev/FernAPI/blob/master/src/main/java/com/github/fernthedev/fernapi/universal/examples)
Example usage can be found [here](https://github.com/Fernthedev/FernAPI/blob/master/src/main/java/com/github/fernthedev/fernapi/com.github.fernthedev.fernapi.com.github.fernthedev.fernapi.universal/examples)

Use the DatabaseManager class for managing tables, and TableInfo for grabbing the data.
RowData class contains a list of ColumnData which contains the data.
Expand Down
27 changes: 27 additions & 0 deletions all/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
}

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'

compile project(':bungee')
compile project(':spigot')
compile project(":sponge")
compile project(":velocity")
}

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
Loading

0 comments on commit 3e89db8

Please sign in to comment.