File tree Expand file tree Collapse file tree 3 files changed +23
-15
lines changed
mybatis-spring-boot-autoconfigure
mybatis-spring-boot-starter Expand file tree Collapse file tree 3 files changed +23
-15
lines changed Original file line number Diff line number Diff line change 61
61
<groupId >org.springframework.boot</groupId >
62
62
<artifactId >spring-boot-starter-jdbc</artifactId >
63
63
</dependency >
64
- <dependency >
65
- <groupId >com.h2database</groupId >
66
- <artifactId >h2</artifactId >
67
- </dependency >
68
64
<!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
69
65
<dependency >
70
66
<groupId >org.springframework.boot</groupId >
73
69
</dependency >
74
70
75
71
<!-- Test dependencies -->
72
+ <dependency >
73
+ <groupId >com.h2database</groupId >
74
+ <artifactId >h2</artifactId >
75
+ <scope >test</scope >
76
+ </dependency >
76
77
<dependency >
77
78
<groupId >junit</groupId >
78
79
<artifactId >junit</artifactId >
79
80
<scope >test</scope >
80
81
</dependency >
82
+ <!-- Just needed to use to run the project with MyBatis snapshots in eclipse -->
81
83
<dependency >
82
84
<groupId >ognl</groupId >
83
85
<artifactId >ognl</artifactId >
93
95
<dependency >
94
96
<groupId >org.javassist</groupId >
95
97
<artifactId >javassist</artifactId >
96
- <version >3.20.0-GA</version >
98
+ <version >3.20.0-GA</version ><!-- $NO-MVN-MAN-VER$ -->
97
99
<scope >test</scope >
98
- </dependency >
99
-
100
+ </dependency >
100
101
</dependencies >
101
102
</project >
Original file line number Diff line number Diff line change
1
+ #*
2
+ * Copyright 2015-2016 the original author or authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ *#
1
16
<?xml version="1.0" encoding="UTF-8"?>
2
17
<!--
3
18
Original file line number Diff line number Diff line change 26
26
<artifactId >mybatis-spring-boot-starter</artifactId >
27
27
<name >mybatis-spring-boot-starter</name >
28
28
<dependencies >
29
- <dependency >
30
- <groupId >org.springframework.boot</groupId >
31
- <artifactId >spring-boot-starter</artifactId >
32
- </dependency >
33
- <dependency >
34
- <groupId >org.springframework.boot</groupId >
35
- <artifactId >spring-boot-starter-jdbc</artifactId >
36
- </dependency >
37
29
<dependency >
38
30
<groupId >org.mybatis.spring.boot</groupId >
39
31
<artifactId >mybatis-spring-boot-autoconfigure</artifactId >
You can’t perform that action at this time.
0 commit comments