Browse Source

use consistent dependency referencing style

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 5 years ago
parent
commit
f5ebba9eff
1 changed files with 11 additions and 11 deletions
  1. 11 11
      build.gradle

+ 11 - 11
build.gradle

@@ -321,17 +321,17 @@ dependencies {
     implementation 'org.conscrypt:conscrypt-android:2.2.1'
 
     // dependencies for markdown rendering
-    implementation ("io.noties.markwon:core:$markwonVersion")
-    implementation ("io.noties.markwon:ext-latex:$markwonVersion")
-    implementation ("io.noties.markwon:ext-strikethrough:$markwonVersion")
-    implementation ("io.noties.markwon:ext-tables:$markwonVersion")
-    implementation ("io.noties.markwon:ext-tasklist:$markwonVersion")
-    implementation ("io.noties.markwon:html:$markwonVersion")
-    implementation ("io.noties.markwon:linkify:$markwonVersion")
-
-    implementation ("io.noties.markwon:syntax-highlight:$markwonVersion")
-    implementation ("io.noties:prism4j:${prismVersion}")
-    kapt "io.noties:prism4j-bundler:${prismVersion}"
+    implementation "io.noties.markwon:core:$markwonVersion"
+    implementation "io.noties.markwon:ext-latex:$markwonVersion"
+    implementation "io.noties.markwon:ext-strikethrough:$markwonVersion"
+    implementation "io.noties.markwon:ext-tables:$markwonVersion"
+    implementation "io.noties.markwon:ext-tasklist:$markwonVersion"
+    implementation "io.noties.markwon:html:$markwonVersion"
+    implementation "io.noties.markwon:linkify:$markwonVersion"
+
+    implementation "io.noties.markwon:syntax-highlight:$markwonVersion"
+    implementation "io.noties:prism4j:$prismVersion"
+    kapt "io.noties:prism4j-bundler:$prismVersion"
 
     // dependencies for local unit tests
     testImplementation 'junit:junit:4.12'