Compare commits
No commits in common. "8f517633dcae7e111b53fbdcf1a9c6064462267f" and "e5db36d558e589d58788999a114a3fee7f039359" have entirely different histories.
8f517633dc
...
e5db36d558
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -3,7 +3,8 @@
|
||||
|
||||
name: Build
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build-gradle:
|
||||
@ -11,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v1
|
||||
@ -35,10 +36,10 @@ jobs:
|
||||
needs:
|
||||
- build-gradle
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3.0.0
|
||||
uses: actions/download-artifact@v1.0.0
|
||||
with:
|
||||
# Artifact name
|
||||
name: claptrap_jar
|
||||
@ -75,4 +76,4 @@ jobs:
|
||||
push: true
|
||||
context: .
|
||||
tags: "ghcr.io/sebclem/claptrapbot:${{ env.tag }}"
|
||||
file: ./Dockerfile
|
||||
file: ./Dockerfile
|
@ -2,7 +2,6 @@
|
||||
|
||||
# ClaptrapBot: A multifunctional Discord Bot !
|
||||
|
||||
|
||||
[![GitHub Release][releases-shield]][releases]
|
||||
![Project Stage][project-stage-shield]
|
||||
[![License][license-shield]](LICENSE.md)
|
||||
|
@ -3,8 +3,8 @@ plugins {
|
||||
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
||||
id 'java'
|
||||
id 'groovy'
|
||||
id 'org.liquibase.gradle' version '2.1.1'
|
||||
id "nebula.lint" version "16.26.0"
|
||||
id 'org.liquibase.gradle' version '2.0.4'
|
||||
id "nebula.lint" version "16.9.0"
|
||||
}
|
||||
|
||||
|
||||
@ -60,11 +60,11 @@ dependencies {
|
||||
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
||||
|
||||
|
||||
liquibaseRuntime 'org.liquibase:liquibase-core:4.12.0'
|
||||
liquibaseRuntime 'org.liquibase:liquibase-core:4.8.0'
|
||||
liquibaseRuntime 'org.liquibase:liquibase-groovy-dsl:3.0.2'
|
||||
liquibaseRuntime 'mysql:mysql-connector-java:8.0.29'
|
||||
liquibaseRuntime group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
|
||||
liquibaseRuntime group: 'org.liquibase.ext', name: 'liquibase-hibernate5', version: '4.12.0'
|
||||
liquibaseRuntime group: 'org.liquibase.ext', name: 'liquibase-hibernate5', version: '4.10.0'
|
||||
liquibaseRuntime 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
liquibaseRuntime 'org.springframework.data:spring-data-jpa'
|
||||
liquibaseRuntime 'org.springframework:spring-beans'
|
||||
|
@ -33,7 +33,7 @@ public class GuildController {
|
||||
|
||||
@GetMapping("inviteLink")
|
||||
public InviteLink getInviteLink() {
|
||||
String link = MainBot.jda.setRequiredScopes("applications.commands").getInviteUrl(Permission.getPermissions(1099511103319L));
|
||||
String link = MainBot.jda.setRequiredScopes("applications.commands").getInviteUrl(Permission.getPermissions(1636113579328L));
|
||||
return new InviteLink(link);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user