- sample

https://explored.tistory.com/18

https://github.com/moyanada/multi-module-sample

https://lemontia.tistory.com/1013







- gradle multi-project
https://docs.gradle.org/current/userguide/multi_project_builds.html#multi_project_builds

- gradle single-project(??)
https://docs.gradle.org/current/userguide/structuring_software_products.html



- Gradle?? (spring-boot 2.1.x)

http://lyasee.com/articles/2018-09/%EC%8A%A4%ED%94%84%EB%A7%81-%EB%A9%80%ED%8B%B0-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EB%A7%8C%EB%93%A4%EA%B8%B0

allprojects {
}

subprojects {
    ....

    tasks.register("initSourceFolders") {
        sourceSets*.java.srcDirs*.each {
            if( !it.exists() ) {
                it.mkdirs()
            }
        }

        sourceSets*.resources.srcDirs*.each {
            if( !it.exists() ) {
                it.mkdirs()
            }
        }
    }
    ...

}



- Gradle5 (spring-boot 2.2.0)

https://eclipse4j.tistory.com/337

https://cheese10yun.github.io/gradle-multi-module/












'gradle' 카테고리의 다른 글

환경별 deploy - gradle  (0) 2020.04.09
이클립스에서 gradle cache 파일 위치 변경  (0) 2020.02.11
eclipse에서 gradle project import  (0) 2016.10.31
이클립스 gradle 설치  (0) 2016.09.14
Gradle 시작하기  (0) 2016.05.15
Posted by 張's blog
,