diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml
new file mode 100644
index 0000000..95c433c
--- /dev/null
+++ b/.idea/checkstyle-idea.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules/pinboard-poster_main.iml b/.idea/modules/pinboard-poster_main.iml
index 90e3065..a80f81d 100644
--- a/.idea/modules/pinboard-poster_main.iml
+++ b/.idea/modules/pinboard-poster_main.iml
@@ -6,7 +6,7 @@
-
+
@@ -29,17 +29,17 @@
-
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/.idea/modules/pinboard-poster_test.iml b/.idea/modules/pinboard-poster_test.iml
index f667106..2148dd9 100644
--- a/.idea/modules/pinboard-poster_test.iml
+++ b/.idea/modules/pinboard-poster_test.iml
@@ -6,7 +6,7 @@
-
+
@@ -35,7 +35,7 @@
-
+
@@ -43,12 +43,12 @@
-
+
-
-
+
+
diff --git a/build.gradle.kts b/build.gradle.kts
index e1dc37c..6a0cc4c 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ plugins {
`build-scan`
jacoco
java
- kotlin("jvm") version "1.3.21"
+ kotlin("jvm") version "1.3.30"
`maven-publish`
id("com.github.ben-manes.versions") version "0.21.0"
id("com.jfrog.bintray") version "1.8.4"
@@ -48,8 +48,9 @@ repositories {
}
dependencies {
- implementation(kotlin("stdlib"))
- implementation("com.squareup.okhttp3:okhttp:3.14.0")
+ compile("com.squareup.okhttp3:okhttp:3.14.0")
+ compile(kotlin("stdlib"))
+
testImplementation("org.testng:testng:6.14.3")
}
@@ -116,12 +117,14 @@ tasks {
includeNonPublic = false
}
- "assemble" {
+ assemble {
dependsOn(sourcesJar, javadocJar)
}
val copyToDeploy by registering(Copy::class) {
- from(configurations.runtime)
+ from(configurations.runtime) {
+ exclude("annotations-*.jar")
+ }
from(jar)
into(deployDir)
}
@@ -150,7 +153,7 @@ tasks {
}
}
- "check" {
+ check {
dependsOn("ktlintCheck")
}