forked from pinterest/ktlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Process of migrating to gradle - organize gradle dependencies (pinter…
- Loading branch information
1 parent
05627ce
commit 3961a20
Showing
9 changed files
with
86 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile libraries.kotlin_stdlib | ||
compile libraries.kotlin_compiler_embeddable | ||
compile deps.kotlin.stdlib | ||
compile deps.kotlin.compiler | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(":ktlint-core") | ||
compile libraries.kotlin_stdlib | ||
compile project(':ktlint-core') | ||
compile deps.kotlin.stdlib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(':ktlint-core') | ||
compile libraries.kotlin_stdlib | ||
compile deps.kotlin.stdlib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(':ktlint-core') | ||
compile libraries.kotlin_stdlib | ||
compile deps.kotlin.stdlib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(':ktlint-core') | ||
compile project(':ktlint-test') | ||
compile libraries.kotlin_stdlib | ||
compile deps.kotlin.stdlib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(':ktlint-core') | ||
compile project(':ktlint-test') | ||
compile libraries.kotlin_stdlib | ||
compile deps.kotlin.stdlib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertj_core | ||
testCompile deps.junit | ||
testCompile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
plugins { | ||
id "org.jetbrains.kotlin.jvm" | ||
id 'org.jetbrains.kotlin.jvm' | ||
} | ||
|
||
dependencies { | ||
compile project(':ktlint-core') | ||
compile libraries.kotlin_stdlib | ||
compile libraries.assertj_core | ||
compile deps.kotlin.stdlib | ||
compile deps.assertj | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters