New options watchJars takes a colon separated list of jars (just the jar names, not paths). For example: -Dspringloaded=watchJars=foo.jar:bar.jar Committed some very basic tests that are passing, they are in the SpringLoadedTestsInSeparateJVM test class, see the tests with 'jar' in the name.
7 lines
123 B
Java
7 lines
123 B
Java
package test;
|
|
public class Wibble {
|
|
public void foo() {
|
|
System.out.println("Wibble.foo() running, version 2");
|
|
}
|
|
}
|