This means we only need the source once and don’t have multiple zips lying around.
Now other projects can get the stdlibs jar like so:
processResources {
dependsOn(":StdLibs:zipItUp")
from files(evaluationDependsOn(":StdLibs").tasks.getByName("zipItUp").outputs)
}
This means we only need the source once and don't have multiple zips lying around.
Now other projects can get the stdlibs jar like so:
```groovy
processResources {
dependsOn(":StdLibs:zipItUp")
from files(evaluationDependsOn(":StdLibs").tasks.getByName("zipItUp").outputs)
}
```
This means we only need the source once and don’t have multiple zips lying around.
Now other projects can get the stdlibs jar like so: