Skip to content

Commit

Permalink
Expose Wiremock as API dependency (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmewes authored May 15, 2023
1 parent eedf143 commit 1a26a00
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -e # Exit with nonzero exit code if anything fails
build \
--info \
--exclude-task signMavenJavaPublication \
--exclude-task signArchives \
--exclude-task signArchives
11 changes: 7 additions & 4 deletions wiremock-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {

plugins {
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'java-library'
id 'maven-publish'
id 'signing'
}
Expand All @@ -26,12 +26,15 @@ group = 'com.epages'
description = 'Spring Boot Starter for adding a WireMock server to your integration test'

dependencies {
api 'com.github.tomakehurst:wiremock-standalone:2.18.0'

implementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter'

compileOnly 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'com.github.tomakehurst:wiremock-standalone:2.18.0'
testImplementation 'org.springframework:spring-web'

testImplementation 'junit:junit'
testImplementation 'org.springframework:spring-web'
}

task sourceJar(type: Jar) {
Expand All @@ -50,7 +53,7 @@ publishing {

pom {
name = 'WireMock Spring Boot Starter'
description = 'A Spring Boot Starter which adds a WireMockServer to your client\'s ApplicationContext for integration testing.'
description = "A Spring Boot Starter which adds a WireMockServer to your client's ApplicationContext for integration testing."
url = 'https://github.com/ePages-de/restdocs-wiremock'
licenses {
license {
Expand Down

0 comments on commit 1a26a00

Please sign in to comment.