File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
apply plugin : ' com.android.application'
16
- apply from : ' .. /dependencies.gradle'
16
+ apply from : " $r ootDir /dependencies.gradle"
17
17
18
18
android {
19
19
compileSdkVersion versions. compileSdk
@@ -39,4 +39,4 @@ dependencies {
39
39
40
40
tasks. withType(Javadoc ). all { enabled = false }
41
41
42
- apply from : ' .. /spotless.gradle'
42
+ apply from : " $r ootDir /spotless.gradle"
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
buildscript {
16
- apply from : ' . /dependencies.gradle'
16
+ apply from : " $r ootDir /dependencies.gradle"
17
17
repositories {
18
18
jcenter()
19
19
google()
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
apply plugin : ' com.android.library'
16
- apply from : ' .. /dependencies.gradle'
17
- apply from : ' .. /publish.gradle'
16
+ apply from : " $r ootDir /dependencies.gradle"
17
+ apply from : " $r ootDir /publish.gradle"
18
18
19
19
android {
20
20
compileSdkVersion versions. compileSdk
@@ -36,4 +36,4 @@ dependencies {
36
36
37
37
tasks. withType(Javadoc ). all { enabled = false }
38
38
39
- apply from : ' .. /spotless.gradle'
39
+ apply from : " $r ootDir /spotless.gradle"
Original file line number Diff line number Diff line change 14
14
15
15
apply plugin : ' com.jfrog.bintray'
16
16
apply plugin : ' maven-publish'
17
- apply from : ' .. /dependencies.gradle'
17
+ apply from : " $r ootDir /dependencies.gradle"
18
18
19
19
ext. repository = [
20
20
name : " colorpickerview" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: "com.diffplug.spotless"
16
16
spotless {
17
17
java {
18
18
target " **/*.java"
19
- licenseHeaderFile ' .. /spotless.license.java'
19
+ licenseHeaderFile " $r ootDir /spotless.license.java"
20
20
trimTrailingWhitespace()
21
21
removeUnusedImports()
22
22
googleJavaFormat()
You can’t perform that action at this time.
0 commit comments