- Building Applications with Spring 5 and Kotlin
- Milo? Vasic
- 36字
- 2021-08-27 18:23:22
Maven installation
The recommended way to get started using Spring Framework in your project is with a dependency management system. Take a look at the following Maven example:
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.0.0.RC4</version> </dependency> </dependencies><repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository>
</repositories>