Skip to content

Commit 59e00f0

Browse files
committed
Adding Servers List
1 parent ec8296c commit 59e00f0

File tree

11 files changed

+107
-101
lines changed

11 files changed

+107
-101
lines changed

client/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.fastcomments</groupId>
4242
<artifactId>client</artifactId>
43-
<version>0.0.24</version>
43+
<version>0.0.25</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.fastcomments:client:0.0.24"
59+
implementation "com.fastcomments:client:0.0.25"
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ mvn clean package
7070

7171
Then manually install the following JARs:
7272

73-
* `target/client-0.0.24.jar`
73+
* `target/client-0.0.25.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started
@@ -90,7 +90,7 @@ import com.fastcomments.api.DefaultApi;
9090
public class Example {
9191
public static void main(String[] args) {
9292
ApiClient defaultClient = Configuration.getDefaultApiClient();
93-
defaultClient.setBasePath("http://localhost");
93+
defaultClient.setBasePath("https://fastcomments.com");
9494

9595
// Configure API key authorization: api_key
9696
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
@@ -119,7 +119,7 @@ public class Example {
119119

120120
## Documentation for API Endpoints
121121

122-
All URIs are relative to *http://localhost*
122+
All URIs are relative to *https://fastcomments.com*
123123

124124
Class | Method | HTTP request | Description
125125
------------ | ------------- | ------------- | -------------

client/api/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ info:
44
title: fastcomments
55
version: 0.0.0
66
servers:
7-
- url: /
7+
- url: https://fastcomments.com/
8+
- url: https://eu.fastcomments.com/
89
paths:
910
/user-search/{tenantId}:
1011
get:

client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.fastcomments'
7-
version = '0.0.24'
7+
version = '0.0.25'
88

99
buildscript {
1010
repositories {

client/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.fastcomments",
44
name := "client",
5-
version := "0.0.24",
5+
version := "0.0.25",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

0 commit comments

Comments
 (0)