mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
11 lines
178 B
Groovy
11 lines
178 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
api "org.apache.commons:commons-math3:${System.properties['commons_math3_version']}"
|
|
}
|