Compare commits

...

6 Commits

Author SHA1 Message Date
rigbot bf5429634a Minimize Jar [pom.xl]
Added minimize jar to configuration. Greatly reduces exported jar file size.
2022-08-18 09:45:40 +00:00
rigbot abd2d6fe03 Update 'pom.xml' 2022-08-18 09:44:50 +00:00
rigbot 2cc46fdae5 Unnecessary Import [EffExecuteStatement.java]
Removed unnecessary import.
2022-08-18 09:43:54 +00:00
rigbot 4fee9f2898 Update 'pom.xml' 2022-08-18 09:41:44 +00:00
rigbot bbbfb83518 Small Changes [pom.xml]
Added minimize jar to configuration. Makes exported jar file size substantially smaller.
2022-08-18 09:41:10 +00:00
Govindas f51db586ef Document supported Minecraft server versions 2022-08-12 08:38:18 +00:00
3 changed files with 5 additions and 4 deletions

View File

@ -13,9 +13,10 @@
- Uses Java 11 instead of Java 8
### Installation
1. Use Skript 2.5+
2. Use Java 11+
3. Put skript-db in plugins folder and restart the server
1. Use 1.8+ Minecraft server version.
2. Use Skript 2.5+ (1.8 Skript fork is needed if you're using 1.8)
3. Use Java 11+ (If you use 1.8, a spigot fork is needed to support Java 11+)
4. Put skript-db in plugins folder and restart the server
### Expression `Data Source` => `datasource`
Stores the connection information for a data source. This should be saved to a variable in a
`script load` event or manually through an effect command.

View File

@ -56,6 +56,7 @@
<version>3.2.3</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
</configuration>
<executions>
<execution>

View File

@ -10,7 +10,6 @@ import com.btk5h.skriptdb.SkriptDB;
import com.btk5h.skriptdb.SkriptUtil;
import com.zaxxer.hikari.HikariDataSource;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.event.Event;
import javax.sql.DataSource;