bamboo
07/20/2016, 1:01 AMuser
07/20/2016, 1:09 AMjakiej
07/22/2016, 5:50 AMrichodemus
07/25/2016, 2:36 PMcbeams
07/25/2016, 2:52 PMsamples
dir and release notes for now. Feel free to ask specific questions here for anything you don't find answers to there.richodemus
07/25/2016, 2:55 PMkevinm-m
07/28/2016, 1:46 AMkevinm-m
07/28/2016, 1:47 AMneuromancer_2501
07/28/2016, 6:01 AMcompile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-jetty")
bamboo
07/28/2016, 1:42 PMbamboo
07/28/2016, 1:45 PMcompile(“…”)
to ModuleDependency
and use the exclude method:
(compile(“…”) as ModuleDependency).apply {
exclude(mapOf(“module” to “spring-boot-starter-tomcat”))
}
kevinm-m
07/28/2016, 8:27 PMkevinm-m
07/28/2016, 9:16 PMorg.gradle.api.plugins.*
resolves the issue, but I thought the samples were leaving that out for a reason.bamboo
07/28/2016, 10:22 PMbamboo
07/28/2016, 10:23 PMbamboo
07/28/2016, 10:23 PMkevinm-m
07/28/2016, 10:24 PMkevinm-m
07/28/2016, 10:27 PMbamboo
07/28/2016, 10:28 PMbamboo
07/28/2016, 10:30 PMkevinm-m
07/28/2016, 10:30 PMbamboo
07/28/2016, 10:30 PMbamboo
07/28/2016, 10:30 PMkevinm-m
07/28/2016, 10:34 PMbamboo
07/28/2016, 10:34 PMbamboo
07/28/2016, 10:35 PMkevinm-m
07/28/2016, 10:37 PMbamboo
07/28/2016, 10:37 PMuser
08/05/2016, 5:19 PMuser
08/05/2016, 5:54 PM