Skip to content

Commit

Permalink
Merge pull request #4 from sqids/kevinxmorales/remove-gradle-kts
Browse files Browse the repository at this point in the history
remove build.gradle.kts in favor of build.gradle
  • Loading branch information
kevinxmorales committed Jan 26, 2024
2 parents a2741e1 + cb2ea19 commit 6d57bc4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
22 changes: 22 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
plugins {
id("org.jetbrains.kotlin.jvm") version "1.6.0"
id("java-library")
}

repositories {
mavenCentral()
}

dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
}

tasks.named('test', Test) {
useJUnitPlatform()

maxHeapSize = '1G'

testLogging {
showStandardStreams = true
}
}
24 changes: 0 additions & 24 deletions build.gradle.kts

This file was deleted.

0 comments on commit 6d57bc4

Please sign in to comment.