|
49 | 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
50 | 50 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
51 | 51 |
|
52 | | - <eclipse-store.version>1.1.0</eclipse-store.version> |
53 | | - <junit-jupiter.version>5.10.1</junit-jupiter.version> |
54 | | - <spring-bom.version>6.1.3</spring-bom.version> |
55 | | - <spring-data-commons.version>3.2.2</spring-data-commons.version> |
56 | 52 | <!-- Should be in sync with org.eclipse.store:integrations-spring-boot3 --> |
57 | | - <spring-boot.version>3.2.2</spring-boot.version> |
58 | | - <spring-test.version>6.1.3</spring-test.version> |
59 | | - <slf4j.version>2.0.11</slf4j.version> |
60 | | - <jakarta.enterprise.version>4.0.1</jakarta.enterprise.version> |
61 | | - <jakarta.version>3.1.0</jakarta.version> |
| 53 | + <org.springframework.boot.version>3.2.2</org.springframework.boot.version> |
| 54 | + <org.eclipse.store.version>1.1.0</org.eclipse.store.version> |
62 | 55 | </properties> |
63 | 56 |
|
64 | 57 | <repositories> |
|
76 | 69 | <dependencyManagement> |
77 | 70 | <dependencies> |
78 | 71 | <dependency> |
79 | | - <groupId>org.springframework</groupId> |
80 | | - <artifactId>spring-framework-bom</artifactId> |
81 | | - <version>${spring-bom.version}</version> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-dependencies</artifactId> |
| 74 | + <version>${org.springframework.boot.version}</version> |
82 | 75 | <type>pom</type> |
83 | 76 | <scope>import</scope> |
84 | 77 | </dependency> |
|
101 | 94 | <dependency> |
102 | 95 | <groupId>org.springframework.data</groupId> |
103 | 96 | <artifactId>spring-data-commons</artifactId> |
104 | | - <version>${spring-data-commons.version}</version> |
105 | 97 | </dependency> |
106 | 98 | <dependency> |
107 | 99 | <groupId>org.springframework</groupId> |
|
117 | 109 | </dependency> |
118 | 110 |
|
119 | 111 | <dependency> |
120 | | - <groupId>jakarta.enterprise</groupId> |
121 | | - <artifactId>jakarta.enterprise.cdi-api</artifactId> |
122 | | - <version>${jakarta.enterprise.version}</version> |
| 112 | + <groupId>jakarta.annotation</groupId> |
| 113 | + <artifactId>jakarta.annotation-api</artifactId> |
123 | 114 | </dependency> |
124 | 115 | <dependency> |
125 | 116 | <groupId>jakarta.persistence</groupId> |
126 | 117 | <artifactId>jakarta.persistence-api</artifactId> |
127 | | - <version>${jakarta.version}</version> |
128 | 118 | </dependency> |
129 | 119 | <dependency> |
130 | 120 | <groupId>org.slf4j</groupId> |
131 | 121 | <artifactId>slf4j-api</artifactId> |
132 | | - <version>${slf4j.version}</version> |
133 | 122 | </dependency> |
134 | 123 |
|
135 | 124 |
|
136 | 125 | <dependency> |
137 | 126 | <groupId>org.eclipse.store</groupId> |
138 | 127 | <artifactId>storage-embedded</artifactId> |
139 | | - <version>${eclipse-store.version}</version> |
| 128 | + <version>${org.eclipse.store.version}</version> |
140 | 129 | </dependency> |
141 | 130 | <dependency> |
142 | 131 | <groupId>org.eclipse.store</groupId> |
143 | 132 | <artifactId>integrations-spring-boot3</artifactId> |
144 | | - <version>${eclipse-store.version}</version> |
| 133 | + <version>${org.eclipse.store.version}</version> |
145 | 134 | </dependency> |
146 | 135 | <dependency> |
147 | 136 | <groupId>org.eclipse.serializer</groupId> |
148 | 137 | <artifactId>serializer</artifactId> |
149 | | - <version>${eclipse-store.version}</version> |
| 138 | + <version>${org.eclipse.store.version}</version> |
150 | 139 | </dependency> |
151 | 140 | <dependency> |
152 | 141 | <groupId>org.eclipse.serializer</groupId> |
153 | 142 | <artifactId>persistence-binary-jdk17</artifactId> |
154 | | - <version>${eclipse-store.version}</version> |
| 143 | + <version>${org.eclipse.store.version}</version> |
155 | 144 | </dependency> |
156 | 145 |
|
157 | 146 | <dependency> |
158 | 147 | <groupId>org.junit.jupiter</groupId> |
159 | 148 | <artifactId>junit-jupiter-engine</artifactId> |
160 | | - <version>${junit-jupiter.version}</version> |
161 | 149 | <scope>test</scope> |
162 | 150 | </dependency> |
163 | 151 | <dependency> |
164 | 152 | <groupId>org.junit.jupiter</groupId> |
165 | 153 | <artifactId>junit-jupiter-api</artifactId> |
166 | | - <version>${junit-jupiter.version}</version> |
167 | 154 | <scope>test</scope> |
168 | 155 | </dependency> |
169 | 156 | <dependency> |
170 | 157 | <groupId>org.junit.jupiter</groupId> |
171 | 158 | <artifactId>junit-jupiter-params</artifactId> |
172 | | - <version>${junit-jupiter.version}</version> |
173 | 159 | <scope>test</scope> |
174 | 160 | </dependency> |
175 | 161 | <dependency> |
176 | 162 | <groupId>org.springframework</groupId> |
177 | 163 | <artifactId>spring-test</artifactId> |
178 | | - <version>${spring-test.version}</version> |
179 | | - <scope>test</scope> |
180 | | - </dependency> |
181 | | - <dependency> |
182 | | - <groupId>org.apache.logging.log4j</groupId> |
183 | | - <artifactId>log4j-api</artifactId> |
184 | | - <version>2.22.1</version> |
185 | 164 | <scope>test</scope> |
186 | 165 | </dependency> |
187 | 166 | <dependency> |
188 | 167 | <groupId>org.apache.logging.log4j</groupId> |
189 | 168 | <artifactId>log4j-core</artifactId> |
190 | | - <version>2.22.1</version> |
191 | 169 | <scope>test</scope> |
192 | 170 | </dependency> |
193 | 171 | <dependency> |
194 | 172 | <groupId>org.apache.logging.log4j</groupId> |
195 | 173 | <artifactId>log4j-slf4j2-impl</artifactId> |
196 | | - <version>2.22.1</version> |
197 | 174 | <scope>test</scope> |
198 | 175 | </dependency> |
199 | 176 | <dependency> |
200 | 177 | <groupId>org.springframework.boot</groupId> |
201 | 178 | <artifactId>spring-boot-autoconfigure</artifactId> |
202 | | - <version>${spring-boot.version}</version> |
203 | 179 | <scope>test</scope> |
204 | 180 | </dependency> |
205 | 181 | </dependencies> |
|
0 commit comments