|
7 | 7 | <parent> |
8 | 8 | <groupId>org.simplejavamail</groupId> |
9 | 9 | <artifactId>maven-master-project</artifactId> |
10 | | - <!--suppress MavenPropertyInParent --> |
11 | 10 | <version>8.8.3</version> |
12 | 11 | <relativePath>../../</relativePath> |
13 | 12 | </parent> |
|
36 | 35 | <dependency> |
37 | 36 | <groupId>org.springframework</groupId> |
38 | 37 | <artifactId>spring-core</artifactId> |
39 | | - <version>${spring.version}</version> |
40 | 38 | <scope>provided</scope> |
41 | 39 | </dependency> |
42 | 40 | <dependency> |
43 | 41 | <groupId>org.springframework</groupId> |
44 | 42 | <artifactId>spring-context</artifactId> |
45 | | - <version>${spring.version}</version> |
46 | 43 | <scope>provided</scope> |
47 | 44 | </dependency> |
48 | 45 | <dependency> |
49 | 46 | <groupId>org.springframework</groupId> |
50 | 47 | <artifactId>spring-beans</artifactId> |
51 | | - <version>${spring.version}</version> |
52 | 48 | <scope>provided</scope> |
53 | 49 | </dependency> |
54 | 50 |
|
|
58 | 54 | <artifactId>spring-boot-configuration-processor</artifactId> |
59 | 55 | <optional>true</optional> |
60 | 56 | <version>${spring.boot.version}</version> |
61 | | - <exclusions> |
62 | | - <exclusion> |
63 | | - <groupId>org.springframework</groupId> |
64 | | - <artifactId>*</artifactId> |
65 | | - </exclusion> |
66 | | - </exclusions> |
67 | 57 | </dependency> |
68 | 58 | <dependency> |
69 | 59 | <groupId>org.springframework.boot</groupId> |
70 | 60 | <artifactId>spring-boot-autoconfigure</artifactId> |
71 | 61 | <optional>true</optional> |
72 | 62 | <version>${spring.boot.version}</version> |
73 | | - <exclusions> |
74 | | - <exclusion> |
75 | | - <groupId>org.springframework</groupId> |
76 | | - <artifactId>*</artifactId> |
77 | | - </exclusion> |
78 | | - </exclusions> |
79 | 63 | </dependency> |
80 | 64 |
|
81 | | - |
82 | 65 | <!-- spring testing --> |
83 | 66 | <dependency> |
84 | 67 | <groupId>org.springframework</groupId> |
85 | 68 | <artifactId>spring-test</artifactId> |
86 | | - <version>${spring.version}</version> |
87 | 69 | <scope>test</scope> |
88 | 70 | </dependency> |
89 | 71 | </dependencies> |
90 | 72 |
|
| 73 | + <dependencyManagement> |
| 74 | + <dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework</groupId> |
| 77 | + <artifactId>spring-framework-bom</artifactId> |
| 78 | + <version>${spring.version}</version> |
| 79 | + <type>pom</type> |
| 80 | + <scope>import</scope> |
| 81 | + </dependency> |
| 82 | + </dependencies> |
| 83 | + </dependencyManagement> |
| 84 | + |
91 | 85 | <build> |
92 | 86 | <plugins> |
93 | 87 | <plugin> |
|
0 commit comments