Refactor core.legacy to core.worker

This commit is contained in:
2016-07-11 23:05:47 +01:00
parent 7868c742a5
commit 8391fcfcaa
60 changed files with 15 additions and 14 deletions

View File

@@ -1,4 +1,6 @@
dependencies { dependencies {
compile project(':core.worker')
compile project(':core.mimis')
compile project(':core.windows') compile project(':core.windows')
compile 'com.github.boukefalos:jlibwinapi:0.1' compile 'com.github.boukefalos:jlibwinapi:0.1'

View File

@@ -17,14 +17,14 @@
package mimis.application.cmd.windows.lightroom; package mimis.application.cmd.windows.lightroom;
import base.exception.worker.ActivateException;
import base.util.ArrayCycle;
import mimis.application.cmd.windows.WindowsApplication; import mimis.application.cmd.windows.WindowsApplication;
import mimis.input.Task; import mimis.input.Task;
import mimis.value.Action; import mimis.value.Action;
import winapi.Amount; import winapi.Amount;
import winapi.Slider; import winapi.Slider;
import winapi.Test; import winapi.Test;
import base.exception.worker.ActivateException;
import base.util.ArrayCycle;
public class LightroomApplication extends WindowsApplication { public class LightroomApplication extends WindowsApplication {
protected final static String PROGRAM = "lightroom.exe"; protected final static String PROGRAM = "lightroom.exe";

View File

@@ -1,5 +0,0 @@
dependencies {
compile 'org.slf4j:slf4j-log4j12:1.7.7'
compile 'org.picocontainer:picocontainer:2.15'
compile 'junit:junit:4.12'
}

View File

@@ -1,5 +1,5 @@
dependencies { dependencies {
compile project(':core.legacy') compile project(':core.worker')
compile 'com.github.boukefalos:jlibmimis:0.1' compile 'com.github.boukefalos:jlibmimis:0.1'
compile 'com.github.boukefalos:jlibxinput:1.0' compile 'com.github.boukefalos:jlibxinput:1.0'

View File

@@ -1,3 +1,3 @@
dependencies { dependencies {
compile project(':core.legacy') compile project(':core.worker')
} }

View File

@@ -0,0 +1,5 @@
dependencies {
compile 'org.slf4j:slf4j-log4j12:1.7.7'
compile 'org.picocontainer:picocontainer:2.15'
compile 'junit:junit:4.12'
}

View File

@@ -1,4 +1,4 @@
#Sun Jul 03 12:05:00 BST 2016 #Mon Jul 11 22:59:09 BST 2016
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

View File

@@ -1,5 +1,5 @@
dependencies { dependencies {
compile project(':core.legacy') compile project(':core.worker')
compile project(':core.mimis') compile project(':core.mimis')
compile project(':device.lirc') compile project(':device.lirc')

View File

@@ -1,7 +1,7 @@
dependencies { dependencies {
compile project(':core.networking') compile project(':core.networking')
compile project(':core.mimis') compile project(':core.mimis')
compile project(':core.legacy') compile project(':core.worker')
compile project(':device.lirc') compile project(':device.lirc')
compile project(':exec.mimis') compile project(':exec.mimis')

View File

@@ -1,5 +1,5 @@
dependencies { dependencies {
compile project(':core.legacy') compile project(':core.worker')
compile 'commons-io:commons-io:2.+' compile 'commons-io:commons-io:2.+'
compile 'commons-cli:commons-cli:1.+' compile 'commons-cli:commons-cli:1.+'

View File

@@ -10,7 +10,6 @@ include ':application.vlc'
include ':application.winamp' include ':application.winamp'
include ':application.wmp' include ':application.wmp'
include ':core.input' include ':core.input'
include ':core.legacy'
include ':core.networking' include ':core.networking'
include ':core.routing' include ':core.routing'
include ':core.windows' include ':core.windows'