Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bamboo/project-import-issue
https://github.com/bamboo/project-import-issue
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bamboo/project-import-issue
- Owner: bamboo
- Created: 2017-07-17T15:16:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T15:29:53.000Z (over 7 years ago)
- Last Synced: 2024-10-28T19:57:29.555Z (2 months ago)
- Language: Java
- Size: 52.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# project-import-issue
Requires the following or similar script in `init.d` in order to reproduce the project import issue:
```Groovy
initscript {
repositories {
maven {
url "https://plugins.gradle.org/m2"
}
}
dependencies {
classpath "com.gradle:build-scan-plugin:1.8"
}
}rootProject {
apply plugin: com.gradle.scan.plugin.BuildScanPlugin
buildScan {
publishAlways()
}
}
```