mirror of
https://github.com/gradle/actions.git
synced 2025-08-23 10:21:28 +08:00
- Includes basic implementation as `CacheCleaner` - Integration test that checks unused files are removed: - Downloaded dependencies - Local build cache entries - Wrapper distributions
12 lines
178 B
Groovy
12 lines
178 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
api "org.apache.commons:commons-math3:${System.properties['commons-math3.version']}"
|
|
}
|