specify directories so we do not rely on the current working directory (#640)

* specify directories so we do not rely on the current working directory

The current working directory has been changed between Bnd 4.1.0 and
4.2.0 and we should not rely on a specific choosen one.
We should set the appropriate directories ourself.

Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
This commit is contained in:
Markus Rathgeb 2019-03-13 20:14:52 +01:00 committed by Kai Kreuzer
parent 55801cfef5
commit 47194895ac
17 changed files with 5 additions and 2 deletions

View File

@ -62,7 +62,9 @@ feature.openhab-model-runtime-all: \
-runproperties: \
osgi.console=,\
osgi.console.enable.builtin=false,\
logback.configurationFile=file:${.}/logback.xml
logback.configurationFile=file:${.}/runtime/logback.xml,\
smarthome.configdir=${.}/runtime/conf,\
smarthome.userdata=${.}/runtime/userdata
-runblacklist: bnd.identity;id='org.apache.aries.javax.jax.rs-api'

View File

Before

Width:  |  Height:  |  Size: 524 B

After

Width:  |  Height:  |  Size: 524 B

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,4 +1,4 @@
<configuration>
<configuration scan="true" scanPeriod="30 seconds">
<!-- defined a console append -->
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
@ -37,5 +37,6 @@
</root>
<logger name="org.eclipse.smarthome" level="INFO" />
<logger name="org.openhab.core" level="INFO" />
</configuration>

View File