-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e60b1da
commit 592aba7
Showing
2 changed files
with
17 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,18 @@ | ||
apply plugin: 'java-library' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
dependencies { | ||
classpath 'se.bjurr.gradle:gradle-scripts:2.+' | ||
} | ||
plugins { | ||
id "se.bjurr.gradle.conventional-release" version "0.+" | ||
id "se.bjurr.gradle.update-versions" version "0.+" | ||
id "se.bjurr.gradle.java-convention" version "0.+" | ||
} | ||
|
||
project.ext.buildConfig = [ | ||
sourceCompatibility: 17, | ||
targetCompatibility: 17, | ||
] | ||
apply from: project.buildscript.classLoader.getResource('main.gradle').toURI() | ||
|
||
dependencies { | ||
compileOnly 'org.wiremock:wiremock:3.5.4' | ||
compileOnly 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0' | ||
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.0' | ||
testImplementation 'org.wiremock:wiremock:3.5.4' | ||
testImplementation 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0' | ||
testImplementation 'org.glassfish.jaxb:jaxb-runtime:4.0.5' | ||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'org.assertj:assertj-core:3.25.3' | ||
testImplementation 'io.rest-assured:rest-assured:5.4.0' | ||
compileOnly 'org.wiremock:wiremock:3.9.1' | ||
compileOnly 'jakarta.ws.rs:jakarta.ws.rs-api:4.0.0' | ||
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.18.0' | ||
|
||
testImplementation 'org.wiremock:wiremock:3.9.1' | ||
testImplementation 'jakarta.ws.rs:jakarta.ws.rs-api:4.0.0' | ||
testImplementation 'org.glassfish.jaxb:jaxb-runtime:4.0.5' | ||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'org.assertj:assertj-core:3.26.3' | ||
testImplementation 'io.rest-assured:rest-assured:5.5.0' | ||
} |
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,4 +1,5 @@ | ||
#Wed Apr 24 06:35:16 CEST 2024 | ||
# | ||
#Fri Oct 04 17:49:07 CEST 2024 | ||
description='Automates configuration of Wiremock stubs from JAX-RS annotated resources.' | ||
group=se.bjurr.wiremock | ||
version=1.1.2 | ||
version=1.1.3 |