Merge pull request #224 from davydotcom/path-asm-update

Update ASM Dependency to 5.2
This commit is contained in:
Andy Clement
2020-08-27 15:12:38 -07:00
committed by GitHub
5 changed files with 28 additions and 2 deletions

View File

@@ -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'

View File

@@ -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);
}

View File

@@ -0,0 +1,4 @@
package org.springsource.loaded.agent;
public class MacOsFileSystemWatcher {
}

View File

@@ -0,0 +1,4 @@
package org.springsource.loaded.agent;
public class PollingFileSystemWatcher {
}