|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 |
|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - <parent> |
7 | | - <groupId>org.springframework.data.build</groupId> |
8 | | - <artifactId>spring-data-parent</artifactId> |
9 | | - <version>2.0.5.RELEASE</version> |
10 | | - </parent> |
11 | 6 |
|
12 | 7 | <groupId>io.github.hexagonframework.data</groupId> |
13 | 8 | <artifactId>spring-data-ebean</artifactId> |
14 | | - <version>1.3.0-SNAPSHOT</version> |
| 9 | + <version>1.3.0.RELEASE</version> |
15 | 10 | <packaging>jar</packaging> |
16 | 11 |
|
17 | 12 | <name>Spring Data Ebean</name> |
|
123 | 118 | <dependency> |
124 | 119 | <groupId>org.springframework</groupId> |
125 | 120 | <artifactId>spring-context</artifactId> |
| 121 | + <version>${spring}</version> |
126 | 122 | </dependency> |
127 | 123 |
|
128 | 124 | <dependency> |
129 | 125 | <groupId>org.springframework</groupId> |
130 | 126 | <artifactId>spring-jdbc</artifactId> |
| 127 | + <version>${spring}</version> |
131 | 128 | </dependency> |
132 | 129 |
|
133 | 130 | <dependency> |
134 | 131 | <groupId>org.springframework</groupId> |
135 | 132 | <artifactId>spring-tx</artifactId> |
| 133 | + <version>${spring}</version> |
136 | 134 | </dependency> |
137 | 135 |
|
138 | 136 | <dependency> |
139 | 137 | <groupId>org.springframework</groupId> |
140 | 138 | <artifactId>spring-core</artifactId> |
| 139 | + <version>${spring}</version> |
141 | 140 | <exclusions> |
142 | 141 | <exclusion> |
143 | 142 | <groupId>commons-logging</groupId> |
|
159 | 158 | </dependency> |
160 | 159 |
|
161 | 160 | <dependency> |
162 | | - <groupId>org.aspectj</groupId> |
163 | | - <artifactId>aspectjrt</artifactId> |
164 | | - <version>${aspectj}</version> |
| 161 | + <groupId>org.springframework</groupId> |
| 162 | + <artifactId>spring-aspects</artifactId> |
| 163 | + <version>${spring}</version> |
| 164 | + <scope>compile</scope> |
165 | 165 | <optional>true</optional> |
166 | 166 | </dependency> |
167 | 167 |
|
168 | 168 | <dependency> |
169 | | - <groupId>org.aspectj</groupId> |
170 | | - <artifactId>aspectjweaver</artifactId> |
171 | | - <version>${aspectj}</version> |
172 | | - <scope>test</scope> |
| 169 | + <groupId>org.projectlombok</groupId> |
| 170 | + <artifactId>lombok</artifactId> |
| 171 | + <version>1.16.16</version> |
| 172 | + <optional>true</optional> |
173 | 173 | </dependency> |
174 | 174 |
|
175 | 175 | <dependency> |
176 | | - <groupId>org.springframework</groupId> |
177 | | - <artifactId>spring-aspects</artifactId> |
178 | | - <scope>compile</scope> |
179 | | - <optional>true</optional> |
| 176 | + <groupId>junit</groupId> |
| 177 | + <artifactId>junit</artifactId> |
| 178 | + <version>4.12</version> |
| 179 | + <scope>test</scope> |
180 | 180 | </dependency> |
181 | 181 |
|
182 | 182 | <dependency> |
|
189 | 189 | <dependency> |
190 | 190 | <groupId>org.springframework</groupId> |
191 | 191 | <artifactId>spring-test</artifactId> |
| 192 | + <version>${spring}</version> |
192 | 193 | <scope>test</scope> |
193 | 194 | </dependency> |
194 | | - <dependency> |
195 | | - <groupId>joda-time</groupId> |
196 | | - <artifactId>joda-time</artifactId> |
197 | | - <version>2.9.7</version> |
198 | | - </dependency> |
199 | 195 |
|
200 | 196 |
|
201 | 197 | </dependencies> |
|
228 | 224 | </plugin> |
229 | 225 | </plugins> |
230 | 226 | </build> |
| 227 | + |
231 | 228 | <repositories> |
232 | 229 | <repository> |
233 | | - <id>spring-libs-milestone</id> |
234 | | - <url>https://repo.spring.io/libs-milestone</url> |
| 230 | + <id>spring-libs-release</id> |
| 231 | + <url>https://repo.spring.io/libs-release</url> |
235 | 232 | </repository> |
236 | 233 | </repositories> |
237 | 234 |
|
238 | 235 | <pluginRepositories> |
239 | 236 | <pluginRepository> |
240 | | - <id>spring-plugins-snapshot</id> |
241 | | - <url>https://repo.spring.io/plugins-snapshot</url> |
| 237 | + <id>spring-plugins-release</id> |
| 238 | + <url>https://repo.spring.io/plugins-release</url> |
242 | 239 | </pluginRepository> |
243 | 240 | </pluginRepositories> |
244 | 241 | </project> |
0 commit comments