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.
9 lines
133 B
Java
9 lines
133 B
Java
public class Foo {
|
|
public static void run() {
|
|
m();
|
|
}
|
|
public static void m() {
|
|
System.out.println("m() running");
|
|
}
|
|
}
|