#99 - Polishing.

Avoid CGlib subclasses for configuration classes. Move ExecutorService to top-level config. Use lazy HTTP client creation to speed up test bootstrap.
This commit is contained in:
Mark Paluch
2020-11-12 10:02:47 +01:00
parent acca880b0f
commit 352e155e9f
13 changed files with 267 additions and 167 deletions

View File

@@ -3,14 +3,12 @@ logging.level.org.springframework=WARN
logging.level.org.springframework.data.release=INFO
logging.level.org.springframework.web.client=TRACE
logging.level.org.springframework.http=DEBUG
# Deployment
deployment.repository-prefix=test-
maven.parallelize=false
jira.username=dummy
jira.password=dummy
jira.api-url=http://localhost:8888
git.username=dummy
git.password=dummy
git.email=dummy@dummy.com

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %5p %40.40c:%4L - %m%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="console"/>
</root>
</configuration>