Skip to content

Commit

Permalink
Fix GitHub Actions and update DkimCore
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim19375 committed Jun 21, 2023
1 parent 89c63f8 commit 9fc0c79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/gradle-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ name: Testing CI with Gradle

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
Expand All @@ -24,4 +22,4 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
run: ./gradlew checkLicenses test clean build
12 changes: 4 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,14 @@ sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding 'UTF-8'

group 'me.dkim19375'
version '2.10.9'
version '2.10.10'

//noinspection GrUnresolvedAccess
compileKotlin.kotlinOptions {
languageVersion = "1.5"
compileKotlin.compilerOptions {
jvmTarget = '1.8'
}

compileTestKotlin.kotlinOptions {
languageVersion = "1.5"
compileTestKotlin.compilerOptions {
jvmTarget = '1.8'
}

Expand Down Expand Up @@ -53,21 +51,19 @@ dependencies {
api 'commons-io:commons-io:2.13.0'
api 'net.dv8tion:JDA:5.0.0-beta.11'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'me.mattstudios:triumph-config:1.0.5-SNAPSHOT'
api 'com.github.minndevelopment:jda-ktx:0.10.0-beta.1'
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VER"
//noinspection GradlePackageUpdate
api 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
//noinspection GradlePackageUpdate
api 'org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.7.1'
api 'io.github.dkim19375:dkimcore:1.4.0'
api 'io.github.dkim19375:dkimcore:1.4.1'
// api 'org.codehaus.groovy:groovy-jsr223:3.0.8'

// testImplementation "net.dv8tion:JDA:$JDA_VER"
testImplementation 'net.dv8tion:JDA:5.0.0-beta.11'
testImplementation 'commons-io:commons-io:2.13.0'
testImplementation 'org.apache.commons:commons-lang3:3.12.0'
testImplementation 'me.mattstudios:triumph-config:1.0.5-SNAPSHOT'
testImplementation 'com.github.minndevelopment:jda-ktx:0.10.0-beta.1'

// testing libs
Expand Down

0 comments on commit 9fc0c79

Please sign in to comment.