Skip to content

Commit

Permalink
feat: upgrading dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Oct 4, 2024
1 parent e60b1da commit 592aba7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 28 deletions.
40 changes: 14 additions & 26 deletions build.gradle
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'
}
5 changes: 3 additions & 2 deletions gradle.properties
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

0 comments on commit 592aba7

Please sign in to comment.