Move all files from java subdirectory to project root
This commit is contained in:
27
exec.mimis/build.gradle
Normal file
27
exec.mimis/build.gradle
Normal file
@@ -0,0 +1,27 @@
|
||||
dependencies {
|
||||
compile project(':core.mimis')
|
||||
|
||||
compile project(':device.wiimote')
|
||||
}
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
from sourceSets.main.allSource
|
||||
manifest {
|
||||
attributes 'Main-Class': 'mimis.Main'
|
||||
}
|
||||
dependsOn configurations.runtime
|
||||
from {
|
||||
configurations.runtime.collect {
|
||||
it.isDirectory() ? it : zipTree(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user