How to find spring-boot-integration-tests maven artifact -


where located spring-boot-integration-tests-1.5.2.release declared parent spring-boot-security-tests-1.5.2.release , not loaded(found) in central repository.

you need explicitly add spring-security test module

if using gradle declare testcompile('org.springframework.security:spring-security-test')

if maven

<dependency>     <groupid>org.springframework.security</groupid>     <artifactid>spring-security-test</artifactid> </dependency> 

note :: version maintained spring boot parent pom


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -