[FIX] Лишние проекты в Gradle. (#186)

* [FIX] Теперь в проектах без исходного кода не появляются файлы gradle и
idea.

* [FIX] Правильное название rootProject.

* [ANY] Обновлены модули.
This commit is contained in:
Zaxar163 2019-03-08 12:20:35 +03:00 committed by Gravit
parent 9bc798108b
commit 7c3c2e8aaa
3 changed files with 5 additions and 8 deletions

View file

@ -1,9 +1,6 @@
allprojects {
apply plugin: 'eclipse'
configure(subprojects.findAll {it.name != 'modules'}) {
apply plugin: 'idea'
}
subprojects {
apply plugin: 'eclipse'
apply plugin: 'java'
repositories {
@ -29,7 +26,7 @@
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
distributionType = Wrapper.DistributionType.ALL
}
defaultTasks 'build'

@ -1 +1 @@
Subproject commit 1acfa0df31cc42121ae77035a2dadea457a4ed28
Subproject commit d4320ce29b8a142a75b86237139e92a72e00b481

View file

@ -1,4 +1,4 @@
rootProject.name = 'Launcher'
rootProject.name = 'GravitLauncher'
include 'Launcher'
include 'libLauncher'