Skip to content

Commit 25c9807

Browse files
committed
Deploy release 2.0.0
1 parent 5165a12 commit 25c9807

File tree

1 file changed

+30
-66
lines changed

1 file changed

+30
-66
lines changed

pom.xml

Lines changed: 30 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
<groupId>io.github.sashirestela</groupId>
88
<artifactId>cleverclient</artifactId>
9-
<version>1.6.3</version>
9+
<version>2.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>cleverclient</name>
13-
<description>Java library that makes it easier to use the Java's HttpClient to perform http operations, using interfaces.</description>
13+
<description>A Java library for making http client and websocket requests easily.</description>
1414
<url>https://github.com/sashirestela/cleverclient</url>
1515

1616
<licenses>
@@ -72,7 +72,7 @@
7272
<javadoc.version>3.11.2</javadoc.version>
7373
<gpg.version>3.2.7</gpg.version>
7474
<sonatype.version>1.7.0</sonatype.version>
75-
<spotless.version>2.43.0</spotless.version>
75+
<spotless.version>2.44.2</spotless.version>
7676
<dependency.version>3.8.1</dependency.version>
7777
</properties>
7878

@@ -86,6 +86,7 @@
8686
<dependency>
8787
<groupId>org.slf4j</groupId>
8888
<artifactId>slf4j-simple</artifactId>
89+
<version>${slf4j.version}</version>
8990
</dependency>
9091
</dependencies>
9192
<build>
@@ -197,101 +198,64 @@
197198
</profile>
198199
</profiles>
199200

200-
<dependencyManagement>
201-
<dependencies>
202-
<dependency>
203-
<groupId>org.projectlombok</groupId>
204-
<artifactId>lombok</artifactId>
205-
<version>${lombok.version}</version>
206-
<scope>provided</scope>
207-
</dependency>
208-
<dependency>
209-
<groupId>com.fasterxml.jackson.core</groupId>
210-
<artifactId>jackson-databind</artifactId>
211-
<version>${jackson.version}</version>
212-
</dependency>
213-
<dependency>
214-
<groupId>com.fasterxml.jackson.datatype</groupId>
215-
<artifactId>jackson-datatype-jsr310</artifactId>
216-
<version>${jackson.version}</version>
217-
<scope>test</scope>
218-
</dependency>
219-
<dependency>
220-
<groupId>com.squareup.okhttp3</groupId>
221-
<artifactId>okhttp</artifactId>
222-
<version>${okhttp.version}</version>
223-
<optional>true</optional>
224-
</dependency>
225-
<dependency>
226-
<groupId>org.slf4j</groupId>
227-
<artifactId>slf4j-api</artifactId>
228-
<version>${slf4j.version}</version>
229-
</dependency>
230-
<dependency>
231-
<groupId>org.slf4j</groupId>
232-
<artifactId>slf4j-simple</artifactId>
233-
<version>${slf4j.version}</version>
234-
<scope>provided</scope>
235-
</dependency>
236-
<dependency>
237-
<groupId>org.junit.jupiter</groupId>
238-
<artifactId>junit-jupiter</artifactId>
239-
<version>${junit.version}</version>
240-
<scope>test</scope>
241-
</dependency>
242-
<dependency>
243-
<groupId>org.mockito</groupId>
244-
<artifactId>mockito-core</artifactId>
245-
<version>${mockito.version}</version>
246-
<scope>test</scope>
247-
</dependency>
248-
<dependency>
249-
<groupId>org.mockito</groupId>
250-
<artifactId>mockito-junit-jupiter</artifactId>
251-
<version>${mockito.version}</version>
252-
<scope>test</scope>
253-
<exclusions>
254-
<exclusion>
255-
<groupId>org.junit.jupiter</groupId>
256-
<artifactId>junit-jupiter-api</artifactId>
257-
</exclusion>
258-
</exclusions>
259-
</dependency>
260-
</dependencies>
261-
</dependencyManagement>
262-
263201
<dependencies>
264202
<dependency>
265203
<groupId>org.projectlombok</groupId>
266204
<artifactId>lombok</artifactId>
205+
<version>${lombok.version}</version>
206+
<scope>provided</scope>
267207
</dependency>
268208
<dependency>
269209
<groupId>com.fasterxml.jackson.core</groupId>
270210
<artifactId>jackson-databind</artifactId>
211+
<version>${jackson.version}</version>
271212
</dependency>
272213
<dependency>
273214
<groupId>com.fasterxml.jackson.datatype</groupId>
274215
<artifactId>jackson-datatype-jsr310</artifactId>
216+
<version>${jackson.version}</version>
217+
<scope>test</scope>
275218
</dependency>
276219
<dependency>
277220
<groupId>com.squareup.okhttp3</groupId>
278221
<artifactId>okhttp</artifactId>
222+
<version>${okhttp.version}</version>
223+
<optional>true</optional>
279224
</dependency>
280225
<dependency>
281226
<groupId>org.slf4j</groupId>
282227
<artifactId>slf4j-api</artifactId>
228+
<version>${slf4j.version}</version>
229+
</dependency>
230+
<dependency>
231+
<groupId>org.slf4j</groupId>
232+
<artifactId>slf4j-simple</artifactId>
233+
<version>${slf4j.version}</version>
234+
<optional>true</optional>
283235
</dependency>
284236
<dependency>
285237
<groupId>org.junit.jupiter</groupId>
286238
<artifactId>junit-jupiter</artifactId>
239+
<version>${junit.version}</version>
240+
<scope>test</scope>
287241
</dependency>
288242
<dependency>
289243
<groupId>org.mockito</groupId>
290244
<artifactId>mockito-core</artifactId>
245+
<version>${mockito.version}</version>
246+
<scope>test</scope>
291247
</dependency>
292248
<dependency>
293249
<groupId>org.mockito</groupId>
294250
<artifactId>mockito-junit-jupiter</artifactId>
251+
<version>${mockito.version}</version>
252+
<scope>test</scope>
253+
<exclusions>
254+
<exclusion>
255+
<groupId>org.junit.jupiter</groupId>
256+
<artifactId>junit-jupiter-api</artifactId>
257+
</exclusion>
258+
</exclusions>
295259
</dependency>
296260
</dependencies>
297261

0 commit comments

Comments
 (0)