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