26 lines
463 B
Plaintext
26 lines
463 B
Plaintext
|
/*
|
||
|
* This file was generated by the Gradle 'init' task.
|
||
|
*/
|
||
|
|
||
|
plugins {
|
||
|
kotlin("jvm") version "2.0.21"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(libs.com.google.code.gson.gson)
|
||
|
api(libs.com.google.guava.guava)
|
||
|
api(libs.joda.time.joda.time)
|
||
|
testImplementation(libs.junit.junit)
|
||
|
implementation(kotlin("stdlib-jdk8"))
|
||
|
}
|
||
|
|
||
|
description = "Activity Streams 2.0 - Core"
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(11)
|
||
|
}
|
||
|
tasks.test {
|
||
|
useJUnit()
|
||
|
}
|