mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-06 12:58:14 +00:00
Troubleshooting classpath issue
This commit is contained in:
parent
f7cbc24656
commit
0eb9f4f75b
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
.attach*
|
||||
*.out
|
||||
/bin
|
||||
/target
|
||||
target/
|
||||
|
@ -118,6 +118,12 @@
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>false</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
16
org.hl7.fhir.validation/src/test/resources/logback-test.xml
Normal file
16
org.hl7.fhir.validation/src/test/resources/logback-test.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<configuration scan="true" scanPeriod="30 seconds">
|
||||
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
||||
<level>INFO</level>
|
||||
</filter>
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} [%file:%line] %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<root level="info">
|
||||
<appender-ref ref="STDOUT" />
|
||||
</root>
|
||||
|
||||
</configuration>
|
3
pom.xml
3
pom.xml
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||
<artifactId>hapi-deployable-pom</artifactId>
|
||||
<version>4.0.0</version>
|
||||
<version>4.0.3</version>
|
||||
</parent>
|
||||
|
||||
<!--
|
||||
@ -152,6 +152,7 @@
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
<testFailureIgnore>false</testFailureIgnore>
|
||||
<argLine>-Xmx4096m</argLine>
|
||||
<redirectTestOutputToFile>false</redirectTestOutputToFile>
|
||||
|
Loading…
x
Reference in New Issue
Block a user