|
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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>com.example</groupId> |
6 | 6 | <artifactId>hilla</artifactId> |
7 | 7 | <version>0.0.1-SNAPSHOT</version> |
8 | 8 | <name>hilla</name> |
9 | | - <url/> |
10 | 9 |
|
11 | 10 | <parent> |
12 | 11 | <groupId>com.baeldung</groupId> |
13 | | - <artifactId>parent-boot-3</artifactId> |
14 | | - <version>0.0.1-SNAPSHOT</version> |
15 | | - <relativePath>../parent-boot-3</relativePath> |
| 12 | + <artifactId>web-modules</artifactId> |
| 13 | + <version>1.0.0-SNAPSHOT</version> |
16 | 14 | </parent> |
17 | 15 |
|
18 | | - <properties> |
19 | | - <java.version>21</java.version> |
20 | | - <vaadin.version>24.4.10</vaadin.version> |
21 | | - </properties> |
| 16 | + <dependencyManagement> |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>com.vaadin</groupId> |
| 20 | + <artifactId>vaadin-bom</artifactId> |
| 21 | + <version>${vaadin.version}</version> |
| 22 | + <type>pom</type> |
| 23 | + <scope>import</scope> |
| 24 | + </dependency> |
| 25 | + </dependencies> |
| 26 | + </dependencyManagement> |
22 | 27 |
|
23 | 28 | <dependencies> |
24 | 29 | <dependency> |
25 | 30 | <groupId>org.springframework.boot</groupId> |
26 | 31 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 32 | + <version>${spring.version}</version> |
27 | 33 | </dependency> |
28 | 34 | <dependency> |
29 | 35 | <groupId>com.vaadin</groupId> |
30 | 36 | <artifactId>vaadin-spring-boot-starter</artifactId> |
31 | 37 | </dependency> |
32 | | - |
33 | 38 | <dependency> |
34 | 39 | <groupId>org.springframework.boot</groupId> |
35 | 40 | <artifactId>spring-boot-devtools</artifactId> |
| 41 | + <version>${spring.version}</version> |
36 | 42 | <scope>runtime</scope> |
37 | 43 | <optional>true</optional> |
38 | 44 | </dependency> |
39 | 45 | <dependency> |
40 | 46 | <groupId>com.h2database</groupId> |
41 | 47 | <artifactId>h2</artifactId> |
| 48 | + <version>${h2.version}</version> |
42 | 49 | <scope>runtime</scope> |
43 | 50 | </dependency> |
44 | 51 | <dependency> |
45 | 52 | <groupId>org.springframework.boot</groupId> |
46 | 53 | <artifactId>spring-boot-starter-test</artifactId> |
| 54 | + <version>${spring.version}</version> |
47 | 55 | <scope>test</scope> |
48 | 56 | </dependency> |
49 | 57 | </dependencies> |
50 | | - <dependencyManagement> |
51 | | - <dependencies> |
52 | | - <dependency> |
53 | | - <groupId>com.vaadin</groupId> |
54 | | - <artifactId>vaadin-bom</artifactId> |
55 | | - <version>${vaadin.version}</version> |
56 | | - <type>pom</type> |
57 | | - <scope>import</scope> |
58 | | - </dependency> |
59 | | - </dependencies> |
60 | | - </dependencyManagement> |
61 | 58 |
|
62 | 59 | <build> |
63 | 60 | <plugins> |
64 | 61 | <plugin> |
65 | 62 | <groupId>org.springframework.boot</groupId> |
66 | 63 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 64 | + <version>${spring.version}</version> |
67 | 65 | </plugin> |
68 | 66 | </plugins> |
69 | 67 | </build> |
|
82 | 80 | </exclusion> |
83 | 81 | </exclusions> |
84 | 82 | </dependency> |
85 | | - |
86 | 83 | </dependencies> |
87 | 84 | <build> |
88 | 85 | <plugins> |
|
106 | 103 | </profile> |
107 | 104 | </profiles> |
108 | 105 |
|
| 106 | + <properties> |
| 107 | + <vaadin.version>24.4.10</vaadin.version> |
| 108 | + <spring.version>3.3.2</spring.version> |
| 109 | + </properties> |
| 110 | + |
109 | 111 | </project> |
0 commit comments