https://github.com/big-guy/expert-happiness
https://github.com/big-guy/expert-happiness
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/big-guy/expert-happiness
- Owner: big-guy
- Created: 2017-08-18T04:45:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-18T04:46:06.000Z (almost 9 years ago)
- Last Synced: 2025-01-20T20:23:29.717Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This doesn't do anything useful.
Build Gradle with branch `sg/native/source-deps` and then run:
`gradlet dependencies`
This should show something like:
```
compileClasspath - Compile classpath for source set 'main'.
\--- org.spockframework:spock-core:1.1-groovy-2.4 -> project :spock:spock-core
+--- org.codehaus.groovy:groovy-all:2.4.12 -> project :groovy
```
This shows that Groovy and Spock are both coming "from source". You'll notice that the Groovy build has a long configuration time. You may need to make sure only a single version of the build-scan plugin is applied (so remove/comment out any init scripts).
If you comment out the Groovy SCM information in `settings.gradle`, you'll see something like:
```
compileClasspath - Compile classpath for source set 'main'.
\--- org.spockframework:spock-core:1.1-groovy-2.4 -> project :spock:spock-core
+--- org.codehaus.groovy:groovy-all:2.4.12
```
If you comment out all of the SCM information, you won't see any project substitutions.