File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
main/groovy/com/lookout/jruby/internal Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 39
39
}
40
40
41
41
systemProperties TESTROOT : new File (buildDir,' tmp/test/unittests' ). absolutePath
42
- systemProperties TEST_SCRIPT_DIR : new File (buildDir,' src/resources/scripts' ). absolutePath
42
+ systemProperties TEST_SCRIPT_DIR : new File (projectDir,' src/test/resources/scripts' ). absolutePath
43
+ systemProperties ' logback.configurationFile' : new File (projectDir,' src/test/resources/logback-test.xml' ). absolutePath
43
44
44
45
if (gradle. startParameter. isOffline()) {
45
46
systemProperties ' TESTS_ARE_OFFLINE' : ' 1'
Original file line number Diff line number Diff line change
1
+ package com.lookout.jruby.internal
2
+
3
+ /**
4
+ * Created by schalkc on 19/08/2014.
5
+ */
6
+ class JRubyExecProxy {
7
+ }
Original file line number Diff line number Diff line change
1
+ <configuration >
2
+ <appender name =" STDOUT" class =" ch.qos.logback.core.ConsoleAppender" >
3
+ <encoder >
4
+ <pattern >%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern >
5
+ </encoder >
6
+ </appender >
7
+
8
+ <root level =" info" >
9
+ <appender-ref ref =" STDOUT" />
10
+ </root >
11
+ </configuration >
You can’t perform that action at this time.
0 commit comments