Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasipanodya committed Nov 18, 2023
1 parent 746a063 commit 890c4d1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ version = "0.12.2${ if (isReleaseBuild()) "" else "-SNAPSHOT" }"
java.sourceCompatibility = JavaVersion.VERSION_20

repositories {
maven {
name = "spek-expect"
url = uri("https://maven.pkg.github.com/tpasipanodya/exposed")
credentials {
username = System.getenv("PACKAGE_STORE_USERNAME")
password = System.getenv("PACKAGE_STORE_TOKEN")
}
}
maven {
name = "spek-expect"
url = uri("https://maven.pkg.github.com/tpasipanodya/spek-expekt")
Expand All @@ -33,9 +41,9 @@ dependencies {
api("org.slf4j:slf4j-simple:2.0.7")
api("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.2")
api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2")
api("io.taff.exposed:exposed-core:0.9.1")
api("io.taff.exposed:exposed-jdbc:0.9.1")
api("io.taff.exposed:exposed-java-time:0.9.1")
api("io.taff.exposed:exposed-core:0.9.2")
api("io.taff.exposed:exposed-jdbc:0.9.2")
api("io.taff.exposed:exposed-java-time:0.9.2")
implementation("org.postgresql:postgresql:42.6.0")
testImplementation("io.taff:spek-expekt:0.10.3")
testImplementation(enforcedPlatform("org.junit:junit-bom:5.9.3"))
Expand Down

0 comments on commit 890c4d1

Please sign in to comment.