Skip to content

Commit

Permalink
🎨 CI image upload workflow + static analysis fix № 3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbatovK committed Nov 13, 2023
1 parent 45b8615 commit 37c319f
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.albatros.springtemplate

import io.swagger.v3.oas.models.ExternalDocumentation
import io.swagger.v3.oas.models.OpenAPI
import io.swagger.v3.oas.models.info.Contact
import io.swagger.v3.oas.models.info.Info
import io.swagger.v3.oas.models.info.License
import org.springframework.context.annotation.Bean
Expand All @@ -17,8 +18,12 @@ class OpenApiConfiguration {
title = "SpringDockerTemplate"
description = "PostgreSQL + Docker + Github workflow CI/CD Spring boot backend template"
version = "v0.0.1"
license = License().name("Apache 2.0")

license = License().name("MIT License").url("https://choosealicense.com/licenses/mit/")
contact = Contact().apply {
email = "[email protected]"
name = "AlbatovK"
url = "https://github.com/AlbatovK"
}
}
)
.externalDocs(
Expand Down

0 comments on commit 37c319f

Please sign in to comment.