From 5fb8597c910283a2807a52e6efb0c548e09e5163 Mon Sep 17 00:00:00 2001
From: Marcin Grzejszczak
Date: Wed, 4 Mar 2020 09:54:55 +0100
Subject: [PATCH] Fixing javadocs
---
.../verifier/plugin/ContractVerifierExtension.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVerifierExtension.java b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVerifierExtension.java
index bae9248cbf..d434156d11 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVerifierExtension.java
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVerifierExtension.java
@@ -163,7 +163,7 @@ public class ContractVerifierExtension {
/**
* The path in the JAR with all the contracts where contracts for this particular service lay.
* If not provided will be resolved to {@code groupid/artifactid}. Example:
- *
+ *
* If {@code groupid} is {@code com.example} and {@code artifactid} is {@code service} then the resolved path will be
* {@code /com/example/artifactid}
*/
@@ -186,11 +186,11 @@ public class ContractVerifierExtension {
/**
* A way to override any base class mappings. The keys are regular expressions on the package name
* and the values FQN to a base class for that given expression.
- *
+ *
* Example of a mapping
- *
+ *
* {@code .*.com.example.v1..*} -> {@code com.example.SomeBaseClass}
- *
+ *
* When a contract's package matches the provided regular expression then extending class will be the one
* provided in the map - in this case {@code com.example.SomeBaseClass}
*/