The seed of 20 was reached on the very first throw. I considered doing 3d20, but then the roll changes from a uniform distribution into a normal distribution, which is less random.
24 lines
434 B
Groovy
24 lines
434 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'io.freefair.lombok' version '8.10'
|
|
}
|
|
|
|
group = 'be.seeseemelk'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'io.github.ollama4j:ollama4j:1.0.82'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testImplementation 'org.hamcrest:hamcrest:3.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|