| GroupId | GroupIdorg.springframework | 
    
|---|---|
| ArtifactId | ArtifactIdspring-web | 
    
| Version | Version5.1.11.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework/spring-web/ -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.1.11.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework/spring-web/
implementation 'org.springframework:spring-web:5.1.11.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework/spring-web/
implementation ("org.springframework:spring-web:5.1.11.RELEASE")
                'org.springframework:spring-web:jar:5.1.11.RELEASE'
                <dependency org="org.springframework" name="spring-web" rev="5.1.11.RELEASE">
  <artifact name="spring-web" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework', module='spring-web', version='5.1.11.RELEASE')
)
                libraryDependencies += "org.springframework" % "spring-web" % "5.1.11.RELEASE"
                [org.springframework/spring-web "5.1.11.RELEASE"]