Move files from core.mimis to relevant subprojects
This commit is contained in:
3
java/application.gomplayer/build.gradle
Normal file
3
java/application.gomplayer/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core.mimis')
|
compile project(':core.windows')
|
||||||
|
|
||||||
compile 'com.github.boukefalos:jlibwinapi:0.1'
|
compile 'com.github.boukefalos:jlibwinapi:0.1'
|
||||||
|
|
||||||
|
|||||||
3
java/application.mpc/build.gradle
Normal file
3
java/application.mpc/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
3
java/application.photoviewer/build.gradle
Normal file
3
java/application.photoviewer/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
3
java/application.robot/build.gradle
Normal file
3
java/application.robot/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.mimis')
|
||||||
|
}
|
||||||
3
java/application.vlc/build.gradle
Normal file
3
java/application.vlc/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
3
java/application.winamp/build.gradle
Normal file
3
java/application.winamp/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
3
java/application.wmp/build.gradle
Normal file
3
java/application.wmp/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
3
java/core.input/build.gradle
Normal file
3
java/core.input/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.windows')
|
||||||
|
}
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (C) 2015 Rik Veenboer <rik.veenboer@gmail.com>
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
package mimis.exception.device;
|
|
||||||
|
|
||||||
import mimis.exception.DeviceException;
|
|
||||||
|
|
||||||
public class DeviceExitException extends DeviceException {
|
|
||||||
protected static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (C) 2015 Rik Veenboer <rik.veenboer@gmail.com>
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
package mimis.exception.device;
|
|
||||||
|
|
||||||
import mimis.exception.InitialiseException;
|
|
||||||
|
|
||||||
public class DeviceInitialiseException extends InitialiseException {
|
|
||||||
protected static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (C) 2015 Rik Veenboer <rik.veenboer@gmail.com>
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
package mimis.exception.device;
|
|
||||||
|
|
||||||
public class DeviceNotFoundException extends DeviceInitialiseException {
|
|
||||||
protected static final long serialVersionUID = 1L;
|
|
||||||
}
|
|
||||||
3
java/core.windows/build.gradle
Normal file
3
java/core.windows/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.mimis')
|
||||||
|
}
|
||||||
3
java/device.extreme3d/build.gradle
Normal file
3
java/device.extreme3d/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.input')
|
||||||
|
}
|
||||||
3
java/device.hotkey/build.gradle
Normal file
3
java/device.hotkey/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.mimis')
|
||||||
|
}
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile project(':core.legacy')
|
compile project(':core.windows')
|
||||||
compile project(':core.mimis')
|
|
||||||
|
|
||||||
compile 'com.github.boukefalos:jlibmimis:0.1'
|
compile 'com.github.boukefalos:jlibmimis:0.1'
|
||||||
}
|
}
|
||||||
3
java/device.network/build.gradle
Normal file
3
java/device.network/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.mimis')
|
||||||
|
}
|
||||||
3
java/device.rumblepad/build.gradle
Normal file
3
java/device.rumblepad/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.input')
|
||||||
|
}
|
||||||
3
java/device.xbox360/build.gradle
Normal file
3
java/device.xbox360/build.gradle
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
dependencies {
|
||||||
|
compile project(':core.input')
|
||||||
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
|
compile project(':core.mimis')
|
||||||
compile project(':device.wiimote')
|
compile project(':device.wiimote')
|
||||||
|
|
||||||
compile 'com.github.boukefalos:jlibmimis:0.1'
|
compile 'com.github.boukefalos:jlibmimis:0.1'
|
||||||
|
|||||||
@@ -1,14 +1,27 @@
|
|||||||
|
include ':application.gomplayer'
|
||||||
include ':application.ibuddy'
|
include ':application.ibuddy'
|
||||||
include ':application.itunes'
|
include ':application.itunes'
|
||||||
include ':application.lightroom'
|
include ':application.lightroom'
|
||||||
include ':application.lirc'
|
include ':application.lirc'
|
||||||
|
include ':application.mpc'
|
||||||
|
include ':application.photoviewer'
|
||||||
|
include ':application.robot'
|
||||||
|
include ':application.vlc'
|
||||||
|
include ':application.winamp'
|
||||||
|
include ':application.wmp'
|
||||||
|
include ':core.input'
|
||||||
include ':core.legacy'
|
include ':core.legacy'
|
||||||
include ':core.networking'
|
include ':core.networking'
|
||||||
include ':core.routing'
|
include ':core.routing'
|
||||||
|
include ':core.windows'
|
||||||
include ':core.worker'
|
include ':core.worker'
|
||||||
include ':core.mimis'
|
include ':core.mimis'
|
||||||
|
include ':device.extreme3d'
|
||||||
include ':device.lirc'
|
include ':device.lirc'
|
||||||
|
include ':device.network'
|
||||||
|
include ':device.rumblepad'
|
||||||
include ':device.wiimote'
|
include ':device.wiimote'
|
||||||
|
include ':device.xbox360'
|
||||||
include ':exec.mimis'
|
include ':exec.mimis'
|
||||||
include ':exec.sound'
|
include ':exec.sound'
|
||||||
include ':exec.test'
|
include ':exec.test'
|
||||||
|
|||||||
Reference in New Issue
Block a user