#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:
@@ -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
|
||||
|
||||
14
release-tools/src/test/resources/logback-test.xml
Normal file
14
release-tools/src/test/resources/logback-test.xml
Normal 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>
|
||||
Reference in New Issue
Block a user