ClaptrapBot/build.gradle

88 lines
3.4 KiB
Groovy
Raw Normal View History

2020-04-12 13:44:08 +02:00
plugins {
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
2020-04-12 13:44:08 +02:00
id 'java'
id 'groovy'
id 'org.liquibase.gradle' version '2.2.1'
id "nebula.lint" version "19.0.1"
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
id "com.gorylenko.gradle-git-properties" version "2.4.1"
}
2018-03-01 12:10:30 +01:00
group = "net.broken"
2020-04-12 17:20:46 +02:00
archivesBaseName = "ClaptrapBot"
2023-12-29 15:28:35 +01:00
sourceCompatibility = JavaVersion.VERSION_21.toString()
2022-05-13 17:54:56 +02:00
repositories {
mavenCentral()
2021-04-29 19:03:47 +02:00
maven {
url 'https://m2.dv8tion.net/releases'
}
}
2022-05-15 18:39:46 +02:00
jar {
2022-05-15 16:49:55 +02:00
enabled(false)
}
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
configurations.implementation {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
dependencies {
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
2022-05-13 17:54:56 +02:00
implementation("org.springframework.boot:spring-boot-starter-log4j2")
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('io.micrometer:micrometer-registry-prometheus:1.12.1')
2020-04-12 13:44:08 +02:00
implementation('org.springdoc:springdoc-openapi-ui:1.7.0')
implementation('org.springdoc:springdoc-openapi-security:1.7.0')
2022-05-13 17:54:56 +02:00
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
implementation('org.liquibase:liquibase-core')
2018-01-12 12:50:12 +01:00
implementation('io.jsonwebtoken:jjwt-api:0.12.3')
implementation('io.jsonwebtoken:jjwt-impl:0.12.3')
implementation('io.jsonwebtoken:jjwt-jackson:0.12.3')
2019-09-16 12:19:35 +02:00
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
implementation('com.sedmelluq:lavaplayer:1.3.78')
implementation('net.dv8tion:JDA:5.0.0-beta.18')
2018-12-04 19:00:20 +01:00
implementation(platform("org.apache.logging.log4j:log4j-bom:2.22.1"))
implementation group: 'org.hibernate', name: 'hibernate-validator', version: '8.0.1.Final'
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
// Use MySQL Connector-J
implementation('mysql:mysql-connector-java:8.0.33')
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
implementation('org.reflections:reflections:0.10.2')
implementation('org.apache.commons:commons-lang3:3.14.0')
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
liquibaseRuntime('org.liquibase:liquibase-core:4.25.1')
liquibaseRuntime('org.liquibase:liquibase-groovy-dsl:3.0.3')
liquibaseRuntime('mysql:mysql-connector-java:8.0.33')
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
liquibaseRuntime group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
liquibaseRuntime group: 'org.liquibase.ext', name: 'liquibase-hibernate5', version: '4.25.1'
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
liquibaseRuntime 'org.springframework.boot:spring-boot-starter-data-jpa'
liquibaseRuntime 'org.springframework.data:spring-data-jpa'
liquibaseRuntime 'org.springframework:spring-beans'
2023-12-14 15:09:42 +01:00
liquibaseRuntime 'net.dv8tion:JDA:5.0.0-beta.18'
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
liquibaseRuntime 'com.sedmelluq:lavaplayer:1.3.78'
liquibaseRuntime sourceSets.main.output
2018-03-01 12:10:30 +01:00
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
}
apply plugin: "org.liquibase.gradle"
2018-03-01 12:10:30 +01:00
Ui Rebuild (#199) * Cleanup * Build auth provider * Implement discord login * Add jwt service + add liquibase * :hammer: Add jwt filter * :hammer: Update user info in db on login * :hammer: Add swagger * :hammer: Add dev container * :hammer: Add dev container * :hammer: Fix changelog ? * :hammer: Fix openApi * :hammer: Add guildcontroller with getMutualGuilds * :hammer: Change multual guilds url * :hammer: Add invite link api * :hammer: migrate env to config prop * :lock: Add security expression for guild * :lock: Add dev mode to auth * :hammer: Add textchannel and voicechannel endpoint * :hammer: Add setting description endpoint * :hammer: Add getRole endpoint * :hammer: Return only visible voice/text channels * :hammer: Add value endpoint * :robot: Change ci * :hammer: Add canManage to guild list * :ambulance: Load user of guild on load + fetch on api call for mutuals guilds * :ambulance: Fix auto_voice_channel_title type * :ambulance: Fix swagger url * :ambulance: Fix setting type * :hammer: Add setting post * Fix blanck string in db * :hammer: Add music status api enpoint * :ambulance: Fix permission * :hammer: Change interact condition * :hammer: Add connect api command * :hammer: Add disconnect endpoint * :hammer: Audio refracto * :hammer: Big refracto * :hammer: Refracto libs * :hammer: Rebuild http request with new client * :hammer: Refracto + add skip, pause, resume, stop endpoint * :hammer: Add endpoint * :ambulance: Fix permission * Update build.yml * Update plugin org.liquibase.gradle to v2.1.1 [skip ci] (#186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v16.26.0 [skip ci] (#185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase:liquibase-core to v4.12.0 [skip ci] (#184) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.liquibase.ext:liquibase-hibernate5 to v4.12.0 [skip ci] (#183) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v3 [skip ci] (#187) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/download-artifact action to v3 [skip ci] (#188) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :ambulance: Fix permission * Update tj-actions/branch-names action to v5.3 [skip ci] (#195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update plugin nebula.lint to v17 [skip ci] (#194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/setup-buildx-action action to v2 [skip ci] (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/login-action action to v2 [skip ci] (#192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/build-push-action action to v3 [skip ci] (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency openjdk to v18 [skip ci] (#190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/setup-java action to v3 [skip ci] (#189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Clean for release * :arrow_up: Update dependency org.apache.logging.log4j:log4j-bom to v2.17.2 (#198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * :arrow_up: Update dependency com.sedmelluq:lavaplayer to v1.3.78 (#197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-30 18:36:21 +02:00
configurations {
liquibaseRuntime.extendsFrom runtime
}
liquibase {
activities {
main {
changeLogFile "src/main/resources/db/changelog/db.changelog-master.yml"
url System.getenv("DB_URL")
referenceUrl 'hibernate:spring:net.Broken?dialect=org.hibernate.dialect.MySQL5Dialect&hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy'
username System.getenv("DB_USER")
password System.getenv("DB_PWD")
}
2018-03-01 12:10:30 +01:00
}
2020-07-24 17:24:35 +02:00
}