-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1279 from softwaremill/generate-openapi-spec
Generate OpenAPI spec during compile
- Loading branch information
Showing
89 changed files
with
5,633 additions
and
5,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +0,0 @@ | ||
updates.ignore = [ | ||
{groupId = "org.scala-lang", artifactId = "scala-compiler", version = "2.12."}, | ||
{groupId = "org.scala-lang", artifactId = "scala-compiler", version = "2.13."}, | ||
{groupId = "org.scala-lang", artifactId = "scala-compiler", version = "3."} | ||
] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
OrganizeImports.groupedImports = AggressiveMerge | ||
OrganizeImports.targetDialect = Scala3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<configuration scan="true"> | ||
<configuration> | ||
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator"> | ||
<resetJUL>true</resetJUL> | ||
</contextListener> | ||
|
||
<if condition='p("LOGBACK_JSON_ENCODE").equals("true")'> | ||
<then> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder class="net.logstash.logback.encoder.LogstashEncoder"/> | ||
<encoder class="net.logstash.logback.encoder.LogstashEncoder" /> | ||
</appender> | ||
</then> | ||
<else> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS}%boldYellow(%replace( [%X{cid}] ){' \[\] ', ' '})[%thread] %-5level %logger{5} - %msg%n%rEx</pattern> | ||
</encoder> | ||
</appender> | ||
<encoder> | ||
<pattern><![CDATA[%d{HH:mm:ss.SSS}%boldYellow(%replace( [%X{cid}] ){' \[\] ', ' '})[%thread] %-5level %logger{5} - %msg%n%rEx]]></pattern> | ||
</encoder> | ||
</appender> | ||
</else> | ||
</if> | ||
|
||
<appender name="OpenTelemetry" | ||
class="io.opentelemetry.instrumentation.logback.appender.v1_0.OpenTelemetryAppender"></appender> | ||
|
||
<logger name="com.softwaremill.bootzooka" level="${LOG_LEVEL:-DEBUG}" additivity="false"> | ||
<appender-ref ref="STDOUT"/> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="OpenTelemetry" /> | ||
</logger> | ||
|
||
<logger name="sttp.client3" level="${LOG_LEVEL:-DEBUG}" additivity="false"> | ||
<appender-ref ref="STDOUT"/> | ||
<logger name="sttp.client3" level="${LOG_LEVEL:-INFO}" additivity="false"> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="OpenTelemetry" /> | ||
</logger> | ||
|
||
<logger name="sttp.tapir" level="${LOG_LEVEL:-DEBUG}" additivity="false"> | ||
<appender-ref ref="STDOUT"/> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="OpenTelemetry" /> | ||
</logger> | ||
|
||
<root level="${LOG_LEVEL:-INFO}"> | ||
<appender-ref ref="STDOUT"/> | ||
<appender-ref ref="STDOUT" /> | ||
<appender-ref ref="OpenTelemetry" /> | ||
</root> | ||
|
||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
global.salt.length=64 |
Oops, something went wrong.