Skip to content

Commit b926251

Browse files
committed
test release preparation
1 parent 3fdc4b8 commit b926251

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ The source-code can be directly checked-out through this repository. It contains
3636
* make sure to set property `authType` of `auth` in `sss.conf.yaml` accordingly (either `csvFileAuth`or `oidc`)
3737
* for `csvFileAuth` make sure to have `users.csv` (in your execution directory) filled with combinations of users' emails and passwords (i.e. "email@email.com;password")
3838
* start SSS with `java -jar -Dlog4j.configuration=file:log4j.properties ./sss.jar`
39-
* access Swagger UI from `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/`
40-
* access the REST API via requests to `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/{API}/{API}/{OP or ID}`
39+
* access Swagger UI from `http://localhost:8080/sss.adapter.rest.v2/`
40+
* access the REST API via requests to `http://localhost:8080/sss.adapter.rest.v2/{API}/{API}/{OP or ID}`
4141
* `API`: REST resource to be targeted
42-
* `OP or ID`: path to the actual service call to be executed, e.g., GET to `http://tomcatPort:tomcatHost/sss.adapter.rest.v2/entities/entities/{entity}` gets information for a certain entity
42+
* `OP or ID`: path to the actual service call to be executed, e.g., GET to `http://localhost:8080/sss.adapter.rest.v2/entities/entities/{entity}` gets information for a certain entity
4343

4444
## SSS service usage via Swagger UI
4545
* to login use either GET or POST calls in `.../sss.adapter.rest.v2/#!/auth`
@@ -117,9 +117,9 @@ The source-code can be directly checked-out through this repository. It contains
117117
## SSS deployment from source code
118118
* run `mvn clean install` on project `sss.root` to have
119119
* `sss/target/sss.app/`
120-
* `adapter/adapter.rest/adapter.rest.vX/target/sss.adapter.rest.vX.X-SNAPSHOT.war`
120+
* `adapter/adapter.rest/adapter.rest.vX/target/adapter.rest.vX.X-SNAPSHOT.war`
121121
* run `sss/target/sss.app/sss.jar` with VM options `-Dlog4j.configuration=file:log4j.properties`
122-
* rename `sss.adapter.rest.vX.X-SNAPSHOT.war` to `sss.adapter.rest-vX.war` and copy to `Tomcat webapps` directory
122+
* rename `adapter.rest.vX.X-SNAPSHOT.war` to `sss.adapter.rest-vX.war` and copy to `Tomcat webapps` directory
123123

124124
## SSS documentation from source code
125125
* for apiVersion `v2`

adapter/adapter.rest/adapter.rest.v1/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
<apiSource>
4646
<apiVersion>v1</apiVersion>
47-
<basePath>http://test-ll.know-center.tugraz.at/alpha.v1/SSAdapterRest</basePath>
47+
<basePath>http://localhost:8080/sss.adapter.rest.v1/SSAdapterRest</basePath>
4848
<!--
4949
localhost:8080/sss.adapter.rest
5050
test-ll.know-center.tugraz.at/ltb
@@ -60,7 +60,7 @@
6060
<licenseUrl>${project.licenseURI}</licenseUrl>
6161
</apiInfo>
6262

63-
<swaggerUIDocBasePath>http://test-ll.know-center.tugraz.at/alpha.v1/api-docs</swaggerUIDocBasePath>
63+
<swaggerUIDocBasePath>http://localhost:8080/sss.adapter.rest.v1/api-docs</swaggerUIDocBasePath>
6464
<!--
6565
localhost:8080/sss.adapter.rest/api-docs
6666
test-ll.know-center.tugraz.at/ltb/api-docs

adapter/adapter.rest/adapter.rest.v1/src/main/webapp/swagger/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<script type="text/javascript">
2626
$(function () {
2727
window.swaggerUi = new SwaggerUi({
28-
url: "http://test-ll.know-center.tugraz.at/alpha.v1/api-docs", //test-ll.know-center.tugraz.at/ltb/api-docs //localhost:8080/sss.adapter.rest.v1/api-docs
28+
url: "http://localhost:8080/sss.adapter.rest.v1/api-docs", //test-ll.know-center.tugraz.at/ltb/api-docs //localhost:8080/sss.adapter.rest.v1/api-docs
2929
dom_id: "swagger-ui-container",
3030
supportedSubmitMethods: ['get', 'post', 'put', 'delete'],
3131
onComplete: function(swaggerApi, swaggerUi){

adapter/adapter.rest/adapter.rest.v2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
<apiSource>
9898
<apiVersion>v2</apiVersion>
99-
<basePath>http://kcs-evolution.know.know-center.at:8390/sss.adapter.rest.v2</basePath>
99+
<basePath>http://localhost:8080/sss.adapter.rest.v2</basePath>
100100
<!--
101101
localhost:8080/sss.adapter.rest.v2
102102
test-ll.know-center.tugraz.at/ltb.v2
@@ -113,7 +113,7 @@
113113
<licenseUrl>${project.licenseURI}</licenseUrl>
114114
</apiInfo>
115115

116-
<swaggerUIDocBasePath>http://kcs-evolution.know.know-center.at:8390/sss.adapter.rest.v2/api-docs</swaggerUIDocBasePath>
116+
<swaggerUIDocBasePath>http://localhost:8080/sss.adapter.rest.v2/api-docs</swaggerUIDocBasePath>
117117
<!--
118118
localhost:8080/sss.adapter.rest.v2/api-docs
119119
test-ll.know-center.tugraz.at/ltb.v2/api-docs

adapter/adapter.rest/adapter.rest.v2/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<script type="text/javascript">
2626
$(function () {
2727
window.swaggerUi = new SwaggerUi({
28-
url: "http://kcs-evolution.know.know-center.at:8390/sss.adapter.rest.v2/api-docs",
28+
url: "http://localhost:8080/sss.adapter.rest.v2/api-docs",
2929
//test-ll.know-center.tugraz.at/ltb-v2/api-docs
3030
//localhost:8080/sss.adapter.rest.v2/api-docs
3131
//test-ll.know-center.tugraz.at/ld

0 commit comments

Comments
 (0)