16 lines
329 B
Groovy
16 lines
329 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group 'com.bartlomiejpluta.base'
|
|
version 'unspecified'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.joml:joml:${jomlVersion}"
|
|
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
implementation "org.apache.commons:commons-math3:${apacheCommonsVersion}"
|
|
} |