diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-28 15:02:15 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-02-13 15:34:58 -0700 |
| commit | f8d0804b0435e0ccacb905ef34b5c2b7da4eb449 (patch) | |
| tree | 64779a8453c8ae9527cc5f3ce7e40a4a471c29d9 /config | |
| parent | d45f5fc5e075cfc27e9156e0449cba12e901ec69 (diff) | |
Add integration test to scan a gradle project
* Skip gradle invocation and install plugin globally
* Update init.gradle
* Try project.apply plugin: syntax
* apply gradle plugin
* Add entry to normalized licenses
* Update spdx-licenses
* Add CHANGELOG entry
Diffstat (limited to 'config')
| -rw-r--r-- | config/gradle/init.gradle | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config/gradle/init.gradle b/config/gradle/init.gradle new file mode 100644 index 0000000..9664914 --- /dev/null +++ b/config/gradle/init.gradle @@ -0,0 +1,14 @@ +initscript { + repositories { + maven { + url "https://plugins.gradle.org/m2/" + } + } + dependencies { + classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.15.0" + } +} +allprojects { + project.apply plugin: com.hierynomus.gradle.license.LicenseBasePlugin + project.apply plugin: com.hierynomus.gradle.license.LicenseReportingPlugin +} |
