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