|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 |
| - <modelVersion>4.0.0</modelVersion> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 |
| - <groupId>org.test</groupId> |
7 |
| - <artifactId>demo</artifactId> |
8 |
| - <version>0.0.1-SNAPSHOT</version> |
9 |
| - <packaging>jar</packaging> |
| 6 | + <groupId>org.test</groupId> |
| 7 | + <artifactId>demo</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
10 | 10 |
|
11 |
| - <name>demo</name> |
12 |
| - <description>Demo project for Spring Boot</description> |
| 11 | + <name>demo</name> |
| 12 | + <description>Demo project for Spring Boot</description> |
13 | 13 |
|
14 |
| - <parent> |
15 |
| - <groupId>org.springframework.boot</groupId> |
16 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
17 |
| - <version>1.2.5.RELEASE</version> |
18 |
| - <relativePath/> <!-- lookup parent from repository --> |
19 |
| - </parent> |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>1.2.5.RELEASE</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
20 | 20 |
|
21 |
| - <properties> |
22 |
| - <kotlin.version>0.13.1514</kotlin.version> |
| 21 | + <properties> |
| 22 | + <kotlin.version>0.14.449</kotlin.version> |
| 23 | + <java.version>1.8</java.version> |
23 | 24 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
24 |
| - <java.version>1.8</java.version> |
25 |
| - </properties> |
| 25 | + </properties> |
26 | 26 |
|
27 |
| - <dependencies> |
28 |
| - <dependency> |
29 |
| - <groupId>org.springframework.boot</groupId> |
30 |
| - <artifactId>spring-boot-starter-web</artifactId> |
31 |
| - </dependency> |
32 |
| - |
33 |
| - <dependency> |
34 |
| - <groupId>org.springframework.boot</groupId> |
35 |
| - <artifactId>spring-boot-starter-test</artifactId> |
36 |
| - <scope>test</scope> |
37 |
| - </dependency> |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.boot</groupId> |
| 30 | + <artifactId>spring-boot-starter-web</artifactId> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter-test</artifactId> |
| 35 | + <scope>test</scope> |
| 36 | + </dependency> |
38 | 37 | <dependency>
|
39 | 38 | <groupId>org.jetbrains.kotlin</groupId>
|
40 | 39 | <artifactId>kotlin-stdlib</artifactId>
|
41 | 40 | <version>${kotlin.version}</version>
|
42 | 41 | </dependency>
|
43 | 42 | </dependencies>
|
44 |
| - |
45 |
| - <build> |
46 |
| - <plugins> |
47 |
| - <plugin> |
48 |
| - <groupId>org.springframework.boot</groupId> |
49 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
50 |
| - </plugin> |
| 43 | + |
| 44 | + <build> |
| 45 | + <plugins> |
| 46 | + <plugin> |
| 47 | + <groupId>org.springframework.boot</groupId> |
| 48 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 49 | + </plugin> |
51 | 50 | <plugin>
|
52 | 51 | <groupId>org.jetbrains.kotlin</groupId>
|
53 | 52 | <artifactId>kotlin-maven-plugin</artifactId>
|
|
81 | 80 | </executions>
|
82 | 81 | </plugin>
|
83 | 82 | </plugins>
|
84 |
| - </build> |
85 |
| - |
86 |
| - |
| 83 | + </build> |
87 | 84 | </project>
|
0 commit comments