Skip to content

Commit

Permalink
Merge pull request #77 from klieber/chore/remove-jitpack-requirement
Browse files Browse the repository at this point in the history
remove jitpack requirement
  • Loading branch information
mduesterhoeft authored Mar 11, 2019
2 parents e005360 + f8d8dce commit fd7e3ba
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion restdocs-api-spec-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import org.jetbrains.kotlin.serialization.js.DynamicTypeDeserializer.id
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}


Expand Down
3 changes: 1 addition & 2 deletions restdocs-api-spec-jsonschema/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}

val jacksonVersion: String by extra
Expand All @@ -16,7 +15,7 @@ val junitVersion: String by extra
dependencies {
compile(kotlin("stdlib-jdk8"))
compile(project(":restdocs-api-spec-model"))
compile("com.github.everit-org.json-schema:org.everit.json.schema:1.9.1")
compile("com.github.erosb:everit-json-schema:1.11.0")
compile("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
compile("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion")

Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-mockmvc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {

repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}

val springBootVersion: String by extra
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-openapi-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}

val junitVersion: String by extra
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-openapi3-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}

val jacksonVersion: String by extra
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-postman-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ plugins {
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://jitpack.io") }
}

val junitVersion: String by extra
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-restassured/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
}
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}

val springBootVersion: String by extra
Expand Down
3 changes: 1 addition & 2 deletions restdocs-api-spec/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
}
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}

val jacksonVersion: String by extra
Expand All @@ -32,7 +31,7 @@ dependencies {
testCompile("com.jayway.jsonpath:json-path:2.3.0")

testImplementation("com.github.java-json-tools:json-schema-validator:2.2.10")
testImplementation("com.github.everit-org.json-schema:org.everit.json.schema:1.9.1")
testImplementation("com.github.erosb:everit-json-schema:1.11.0")
}


0 comments on commit fd7e3ba

Please sign in to comment.