mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-18 09:44:47 +08:00
Simplify Gradle support
Remove support for Gradle 2 and simplify script generation by only supporting the recommended structure as of Gradle 3.4 Closes gh-778
This commit is contained in:
@@ -95,9 +95,10 @@ public class ProjectGenerationSmokeTests
|
||||
page.type("gradle-project");
|
||||
page.submit();
|
||||
assertSimpleProject().isGradleProject().gradleBuildAssert()
|
||||
.contains("compile('org.springframework.boot:spring-boot-starter')")
|
||||
.contains(
|
||||
"testCompile('org.springframework.boot:spring-boot-starter-test')");
|
||||
"implementation('org.springframework.boot:spring-boot-starter')")
|
||||
.contains(
|
||||
"testImplementation('org.springframework.boot:spring-boot-starter-test')");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user