mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
Merge branch 'dev' of github.com:GravitLauncher/Launcher into dev
This commit is contained in:
commit
b8cc9ec9f5
3 changed files with 10 additions and 4 deletions
|
@ -7,6 +7,8 @@
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
|
||||||
|
group = 'ru.gravit'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url 'http://oss.sonatype.org/content/groups/public' }
|
maven { url 'http://oss.sonatype.org/content/groups/public' }
|
||||||
|
@ -30,6 +32,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
subprojects {
|
||||||
|
tasks.withType(JavaCompile) {
|
||||||
|
options.incremental = true // one flag, and things will get MUCH faster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
wrapper {
|
wrapper {
|
||||||
distributionType = Wrapper.DistributionType.ALL
|
distributionType = Wrapper.DistributionType.ALL
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,5 @@ public interface Module extends AutoCloseable {
|
||||||
|
|
||||||
default void finish(ModuleContext context) {
|
default void finish(ModuleContext context) {
|
||||||
// NOP
|
// NOP
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
||||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit c338164496249a17eea2079ed560b09132831f35
|
Subproject commit 9e3e773124ced1d3530349a69c21854aa88eaf6b
|
Loading…
Reference in a new issue