diff --git a/library/build.gradle b/library/build.gradle index 6c18dfc..45d68f2 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -40,23 +40,23 @@ dependencies { testImplementation 'org.mockito:mockito-core:5.4.0' } -publishing { - repositories { - maven { - name = "mad4j" - url = uri("https://maven.pkg.github.com/stelitop/mad4j") - credentials { - username = project.findProperty("gpr.user") ?: System.getenv("USERNAME") - password = project.findProperty("gpr.key") ?: System.getenv("TOKEN") - } - } - } - publications { - gpr(MavenPublication) { - from(components.java) - } - } -} +//publishing { +// repositories { +// maven { +// name = "mad4j" +// url = uri("https://maven.pkg.github.com/stelitop/mad4j") +// credentials { +// username = project.findProperty("gpr.user") ?: System.getenv("USERNAME") +// password = project.findProperty("gpr.key") ?: System.getenv("TOKEN") +// } +// } +// } +// publications { +// gpr(MavenPublication) { +// from(components.java) +// } +// } +//} tasks.named('test') { useJUnitPlatform() diff --git a/test-bots/general-bot/build.gradle b/test-bots/general-bot/build.gradle index ccaba20..8751459 100644 --- a/test-bots/general-bot/build.gradle +++ b/test-bots/general-bot/build.gradle @@ -21,6 +21,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter' implementation 'com.discord4j:discord4j-core:3.2.6' implementation project(":library") + //implementation 'io.github.stelitop:mad4j:0.0.6-SNAPSHOT' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher'