remove bridge module (files)
This commit is contained in:
@@ -1,22 +0,0 @@
|
|||||||
group = 'asys'
|
|
||||||
version = '0.0-SNAPSHOT'
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
compile (group: 'net.md-5', name: 'bungeecord-api', version: '1.8-SNAPSHOT') {
|
|
||||||
// exclude group: 'com.google.guava', module: 'guava'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
processResources {
|
|
||||||
filesMatching('**/bungee.yml') {
|
|
||||||
expand(
|
|
||||||
'version': project.version,
|
|
||||||
'mainclass': 'asys.bridge.bungee.ASysBridgePlugin'
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
/*
|
|
||||||
* DmitriyMX <mail@dmitriymx.ru>
|
|
||||||
* 2017-03-09
|
|
||||||
*/
|
|
||||||
package asys.bridge.bundle;
|
|
||||||
|
|
||||||
import org.osgi.framework.BundleActivator;
|
|
||||||
import org.osgi.framework.BundleContext;
|
|
||||||
|
|
||||||
public class Activator implements BundleActivator {
|
|
||||||
@Override
|
|
||||||
public void start(BundleContext context) throws Exception {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void stop(BundleContext context) throws Exception {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
* DmitriyMX <mail@dmitriymx.ru>
|
|
||||||
* 2017-03-09
|
|
||||||
*/
|
|
||||||
package asys.bridge.bungee;
|
|
||||||
|
|
||||||
import net.md_5.bungee.api.plugin.Plugin;
|
|
||||||
|
|
||||||
public class ASysBridgePlugin extends Plugin {
|
|
||||||
@Override
|
|
||||||
public void onEnable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onDisable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
name: ASys Bridge
|
|
||||||
version: ${version}
|
|
||||||
main: ${mainclass}
|
|
||||||
author: DmitriyMX
|
|
||||||
Reference in New Issue
Block a user