| Categories | 
                CategoriesSpring Boot Container Microservices Security | 
        
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
    
| ArtifactId | ArtifactIdspring-boot-starter-security | 
    
| Version | Version1.5.16.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-security/ -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
    <version>1.5.16.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-security/
implementation 'org.springframework.boot:spring-boot-starter-security:1.5.16.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-security/
implementation ("org.springframework.boot:spring-boot-starter-security:1.5.16.RELEASE")
                'org.springframework.boot:spring-boot-starter-security:jar:1.5.16.RELEASE'
                <dependency org="org.springframework.boot" name="spring-boot-starter-security" rev="1.5.16.RELEASE">
  <artifact name="spring-boot-starter-security" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework.boot', module='spring-boot-starter-security', version='1.5.16.RELEASE')
)
                libraryDependencies += "org.springframework.boot" % "spring-boot-starter-security" % "1.5.16.RELEASE"
                [org.springframework.boot/spring-boot-starter-security "1.5.16.RELEASE"]