Skip to content
Snippets Groups Projects
Commit 66d1ee4b authored by Lawrence Chan's avatar Lawrence Chan
Browse files

Use full URL instead of relative path

parent 962d55c1
No related branches found
No related tags found
1 merge request!472Use full URL instead of relative path
Pipeline #235800 failed
......@@ -7,7 +7,6 @@ import io.swagger.v3.oas.annotations.info.Info;
import io.swagger.v3.oas.annotations.info.License;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.security.SecurityScheme;
import io.swagger.v3.oas.annotations.servers.Server;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
......@@ -20,7 +19,6 @@ import org.springframework.context.annotation.Profile;
version = "${api.version}",
contact = @Contact(name = "${api.contact.name}", email = "${api.contact.email}"),
license = @License(name = "${api.license.name}", url = "${api.license.url}")),
servers = @Server(url = "${api.server.url}"),
security = @SecurityRequirement(name = "Authorization"),
tags = {
@Tag(name = "pubsub-endpoint-api", description = "PubSub Endpoint API"),
......
......@@ -16,7 +16,6 @@ api.contact.name=OSDU Data Platform Team
api.contact.email=dps@OSDU.org
api.license.name=Apache 2.0
api.license.url=https://www.apache.org/licenses/LICENSE-2.0.html
api.server.url=${server.servlet.context-path}
#PubSub Enpoint related properties
pubsubEndpointApi.recordChanged.summary=Record Changed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment