Add 'spring test [files]' command to compile and test code automatically
- Look for JUnit test symbols, and add JUnit automatically - Look for Spock test symbols, and add Spock automatically - Based on what test libraries were used, invoke relevant embedded testers and accumulate results - Make it so that multiple testers can be invoked through a single 'test' command - Print out total results and write out detailed trace errors in results.txt - Update based on the new artifact resolution mechanism
This commit is contained in:
@@ -5,6 +5,8 @@ org.springframework.boot.cli.compiler.autoconfigure.RabbitCompilerAutoConfigurat
|
||||
org.springframework.boot.cli.compiler.autoconfigure.ReactorCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.JdbcCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.JmsCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.JUnitCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.SpockCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.TransactionManagementCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.SpringIntegrationCompilerAutoConfiguration
|
||||
org.springframework.boot.cli.compiler.autoconfigure.SpringSecurityCompilerAutoConfiguration
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
groovy.version: ${groovy.version}
|
||||
hamcrest.version: ${hamcrest.version}
|
||||
jetty.version: ${jetty.version}
|
||||
junit.version: ${junit.version}
|
||||
reactor.version: ${reactor.version}
|
||||
spock.version: ${spock.version}
|
||||
spring.version: ${spring.version}
|
||||
spring-batch.version: ${spring-batch.version}
|
||||
spring-boot.version: ${project.version}
|
||||
spring-rabbit.version: ${spring-rabbit.version}
|
||||
spring-security.version: ${spring-security.version}
|
||||
spring-integration.version: ${spring-integration.version}
|
||||
spring-integration-groovydsl.version: ${spring-integration-groovydsl.version}
|
||||
tomcat.version: ${tomcat.version}
|
||||
Reference in New Issue
Block a user