Skip to content

Commit 7160769

Browse files
committed
Merge remote-tracking branch 'origin/development'
2 parents 359d3bd + c8be13f commit 7160769

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add the following dependency to the dependencies section of your project's `pom.
1818
<dependency>
1919
<groupId>io.github.sornerol</groupId>
2020
<artifactId>chesscom-pubapi-wrapper</artifactId>
21-
<version>1.6.2</version>
21+
<version>1.6.3</version>
2222
</dependency>
2323
</dependencies
2424
```
@@ -27,7 +27,7 @@ Add the following dependency to the dependencies section of your project's `buil
2727
```
2828
dependencies {
2929
// other project dependencies...
30-
implementation 'io.github.sornerol:chesscom-pubapi-wrapper:1.6.2'
30+
implementation 'io.github.sornerol:chesscom-pubapi-wrapper:1.6.3'
3131
}
3232
```
3333

pom.xml

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

77
<groupId>io.github.sornerol</groupId>
88
<artifactId>chesscom-pubapi-wrapper</artifactId>
9-
<version>1.6.2</version>
9+
<version>1.6.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
@@ -34,7 +34,7 @@
3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>
3636
<maven.compiler.target>1.8</maven.compiler.target>
37-
<jackson.version>2.17.1</jackson.version>
37+
<jackson.version>2.17.2</jackson.version>
3838
</properties>
3939
<dependencyManagement>
4040
<dependencies>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.projectlombok</groupId>
5353
<artifactId>lombok</artifactId>
54-
<version>1.18.32</version>
54+
<version>1.18.34</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.fasterxml.jackson</groupId>
@@ -67,17 +67,17 @@
6767
<dependency>
6868
<groupId>org.apache.httpcomponents.client5</groupId>
6969
<artifactId>httpclient5</artifactId>
70-
<version>5.3.1</version>
70+
<version>5.4</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>commons-io</groupId>
7474
<artifactId>commons-io</artifactId>
75-
<version>2.16.1</version>
75+
<version>2.17.0</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.slf4j</groupId>
7979
<artifactId>slf4j-api</artifactId>
80-
<version>2.0.13</version>
80+
<version>2.0.16</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.spockframework</groupId>
@@ -92,7 +92,7 @@
9292
<dependency>
9393
<groupId>org.slf4j</groupId>
9494
<artifactId>slf4j-simple</artifactId>
95-
<version>2.0.13</version>
95+
<version>2.0.16</version>
9696
<scope>test</scope>
9797
</dependency>
9898
</dependencies>
@@ -105,7 +105,7 @@
105105
<plugin>
106106
<groupId>org.apache.maven.plugins</groupId>
107107
<artifactId>maven-javadoc-plugin</artifactId>
108-
<version>3.7.0</version>
108+
<version>3.10.0</version>
109109
<executions>
110110
<execution>
111111
<id>attach-javadocs</id>
@@ -164,7 +164,7 @@
164164
<plugin>
165165
<groupId>org.apache.maven.plugins</groupId>
166166
<artifactId>maven-gpg-plugin</artifactId>
167-
<version>3.2.4</version>
167+
<version>3.2.7</version>
168168
<executions>
169169
<execution>
170170
<id>sign-artifacts</id>
@@ -190,7 +190,7 @@
190190
<plugin>
191191
<groupId>org.apache.maven.plugins</groupId>
192192
<artifactId>maven-surefire-plugin</artifactId>
193-
<version>3.3.0</version>
193+
<version>3.5.0</version>
194194
</plugin>
195195
</plugins>
196196
</build>
@@ -211,7 +211,7 @@
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-javadoc-plugin</artifactId>
214-
<version>3.7.0</version>
214+
<version>3.10.0</version>
215215
<executions>
216216
<execution>
217217
<id>attach-javadocs</id>
@@ -271,7 +271,7 @@
271271
<plugin>
272272
<groupId>org.apache.maven.plugins</groupId>
273273
<artifactId>maven-surefire-plugin</artifactId>
274-
<version>3.3.0</version>
274+
<version>3.5.0</version>
275275
</plugin>
276276
</plugins>
277277
</build>

src/test/groovy/io/github/sornerol/chess/pubapi/client/ClubClientTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import spock.lang.Specification
88

99

1010
class ClubClientTest extends Specification {
11-
public static final String TEST_CLUB_ID = 'chess-com-developer-community'
12-
public static final String TEST_CLUB_API_URL = 'https://api.chess.com/pub/club/chess-com-developer-community'
11+
public static final String TEST_CLUB_ID = 'chess-com-daily-chess-club'
12+
public static final String TEST_CLUB_API_URL = 'https://api.chess.com/pub/club/chess-com-daily-chess-club'
1313
private ClubClient sut
1414

1515
def setup() {

0 commit comments

Comments
 (0)