File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
src/main/resources/database Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,17 @@ checkstyle {
107107 configDirectory.set(File (" checkstyle" ))
108108}
109109
110+ tasks.withType<Checkstyle >() {
111+ exclude(" **/generated/**" )
112+ }
113+
114+ tasks.checkstyleAot {
115+ isEnabled = false
116+ }
117+ tasks.processTestAot {
118+ isEnabled = false
119+ }
120+
110121graalvmNative {
111122 binaries {
112123 named(" main" ) {
Original file line number Diff line number Diff line change @@ -112,11 +112,11 @@ CREATE TABLE IF NOT EXISTS user_preferences
112112 ordinal INTEGER NOT NULL ,
113113 state VARCHAR NOT NULL DEFAULT ' ' ,
114114 PRIMARY KEY (user_id, ordinal)
115- )
115+ );
116116
117117// QOTW champion
118118CREATE TABLE qotw_champion (
119119 guild_id BIGINT NOT NULL ,
120120 user_id BIGINT NOT NULL ,
121121 PRIMARY KEY (guild_id, user_id)
122- )
122+ );
You can’t perform that action at this time.
0 commit comments