Skip to content

Commit

Permalink
Add licensee plugin for License verification.
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jun 21, 2022
1 parent 086ad7a commit d62fd0e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath 'com.vanniktech:gradle-code-quality-tools-plugin:0.21.0'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.20.0'

classpath 'app.cash.licensee:licensee-gradle-plugin:1.4.1'
}
}

Expand Down
9 changes: 9 additions & 0 deletions rxpermission-testing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
plugins {
id("app.cash.licensee")
}

apply plugin: 'com.android.library'

licensee {
allow("Apache-2.0")
allow("CC0-1.0")
}

android {
namespace = "com.vanniktech.rxpermission.testing"

Expand Down
9 changes: 9 additions & 0 deletions rxpermission/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
plugins {
id("app.cash.licensee")
}

apply plugin: 'com.android.library'

licensee {
allow("Apache-2.0")
allow("CC0-1.0")
}

android {
namespace "com.vanniktech.rxpermission"

Expand Down

0 comments on commit d62fd0e

Please sign in to comment.