@@ -16,27 +16,21 @@ This package is part of the STACKIT Java SDK. For additional information, please
1616## Requirements
1717
1818Building the API client library requires:
19-
20191. Java 1.8+
21- { {#jersey2} }
22- 2. Maven (3.8.3+)/Gradle (7.2+)
23- { {/jersey2} }
24- { {^jersey2} }
25- 2. Maven/Gradle
26- { {/jersey2} }
2720
2821## Installation
2922
3023To install the API client library to your local Maven repository, simply execute:
3124
3225```shell
33- mvn clean install
26+ ./gradlew publishToMavenLocal
3427```
3528
3629To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
3730
3831```shell
39- mvn clean deploy
32+ # TODO: follow up story
33+ # ./gradlew publishToMavenCentral
4034```
4135
4236Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information.
@@ -49,7 +43,7 @@ Add this dependency to your project's POM:
4943<dependency >
5044 <groupId >{ {{groupId} }}</groupId >
5145 <artifactId >{ {{artifactId} }}</artifactId >
52- <version >{ {{artifactVersion } }} </version >
46+ <version >< SDK _VERSION > </version >
5347 <scope >compile</scope >
5448</dependency >
5549```
@@ -65,7 +59,7 @@ Add this dependency to your project's build file:
6559 }
6660
6761 dependencies {
68- implementation " {{{groupId}}}:{{{artifactId}}}:{{{artifactVersion}}} "
62+ implementation " {{{groupId}}}:{{{artifactId}}}:<SDK_VERSION> "
6963 }
7064```
7165
@@ -79,7 +73,7 @@ mvn clean package
7973
8074Then manually install the following JARs:
8175
82- - `target/{ {{artifactId} }}-{ {{artifactVersion } }} .jar`
76+ - `target/{ {{artifactId} }}-< SDK _VERSION > .jar`
8377- `target/lib/*.jar`
8478
8579{ {#jersey2} }
@@ -194,10 +188,6 @@ Class | Method | HTTP request | Description
194188{ {#models} }{ {#model} } - [{ {classname} }]({ {modelDocPath} }{ {classname} }.md)
195189{ {/model} }{ {/models} }
196190
197- <a id =" documentation-for-authorization" ></a >
198-
199191## Recommendation
200192
201193It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.
202-
203- ## Author
0 commit comments