Merge pull request #224 from davydotcom/path-asm-update
Update ASM Dependency to 5.2
This commit is contained in:
@@ -41,8 +41,8 @@ task wrapper(type: Wrapper) {
|
||||
dependencies {
|
||||
tools 'com.googlecode.jarjar:jarjar:1.3'
|
||||
|
||||
compile 'org.ow2.asm:asm:5.0.2'
|
||||
compile 'org.ow2.asm:asm-tree:5.0.2'
|
||||
compile 'org.ow2.asm:asm:5.2'
|
||||
compile 'org.ow2.asm:asm-tree:5.2'
|
||||
|
||||
testCompile 'junit:junit:4.11'
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public interface AbstractFileSystemWatcher {
|
||||
/**
|
||||
* Shutdown the thread.
|
||||
*/
|
||||
public void shutdown();
|
||||
|
||||
/**
|
||||
* Add a new file to the list of those being monitored. If the file is something that can be watched, then this
|
||||
* method will cause the thread to start (if it hasn't already been started).
|
||||
*
|
||||
* @param fileToMonitor the file to start monitor
|
||||
*/
|
||||
public void register(File fileToMonitor);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
public class MacOsFileSystemWatcher {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
public class PollingFileSystemWatcher {
|
||||
}
|
||||
Reference in New Issue
Block a user