@@ -26,7 +26,6 @@ under the License.
26
26
<groupId >org.apache.griffin</groupId >
27
27
<artifactId >griffin</artifactId >
28
28
<version >2.0.0-SNAPSHOT</version >
29
- <relativePath />
30
29
</parent >
31
30
32
31
<groupId >org.apache.griffin</groupId >
@@ -37,12 +36,160 @@ under the License.
37
36
<url >https://griffin.apache.org</url >
38
37
39
38
<properties >
40
-
39
+ <spring-boot .version>2.7.3</spring-boot .version>
40
+ <mybatis-plus .version>3.5.2</mybatis-plus .version>
41
+ <commons-codec .version>1.11</commons-codec .version>
42
+ <commons-logging .version>1.1.1</commons-logging .version>
43
+ <commons-lang3 .version>3.12.0</commons-lang3 .version>
44
+ <commons-httpclient >3.0.1</commons-httpclient >
45
+ <commons-beanutils .version>1.9.4</commons-beanutils .version>
46
+ <commons-configuration .version>1.10</commons-configuration .version>
47
+ <commons-email .version>1.5</commons-email .version>
48
+ <commons-collections4 .version>4.3</commons-collections4 .version>
49
+ <httpclient .version>4.5.13</httpclient .version>
50
+ <httpcore .version>4.4.15</httpcore .version>
51
+ <jackson .version>2.13.4</jackson .version>
52
+ <slf4j .version>1.7.36</slf4j .version>
53
+ <logback .version>1.2.11</logback .version>
54
+ <h2 .version>2.2.220</h2 .version>
55
+ <mysql-connector .version>8.0.28</mysql-connector .version>
56
+ <commons-io .version>2.11.0</commons-io .version>
57
+ <presto-jdbc .version>0.238.1</presto-jdbc .version>
58
+ <joda-time .version>2.10.13</joda-time .version>
59
+ <spring-cloud-dependencies .version>2021.0.3</spring-cloud-dependencies .version>
60
+ <snakeyaml .version>1.33</snakeyaml .version>
41
61
</properties >
42
62
43
63
44
64
<dependencyManagement >
45
65
<dependencies >
66
+ <!-- spring -->
67
+ <dependency >
68
+ <groupId >org.springframework.boot</groupId >
69
+ <artifactId >spring-boot-starter-parent</artifactId >
70
+ <version >${spring-boot.version} </version >
71
+ <type >pom</type >
72
+ <scope >import</scope >
73
+ </dependency >
74
+ <dependency >
75
+ <groupId >org.springframework</groupId >
76
+ <artifactId >spring-test</artifactId >
77
+ <scope >test</scope >
78
+ </dependency >
79
+
80
+ <!-- mybatis -->
81
+ <dependency >
82
+ <groupId >com.baomidou</groupId >
83
+ <artifactId >mybatis-plus-boot-starter</artifactId >
84
+ <version >${mybatis-plus.version} </version >
85
+ </dependency >
86
+ <dependency >
87
+ <groupId >com.baomidou</groupId >
88
+ <artifactId >mybatis-plus</artifactId >
89
+ <version >${mybatis-plus.version} </version >
90
+ </dependency >
91
+ <dependency >
92
+ <groupId >com.baomidou</groupId >
93
+ <artifactId >mybatis-plus-annotation</artifactId >
94
+ <version >${mybatis-plus.version} </version >
95
+ </dependency >
96
+
97
+ <!-- jackson -->
98
+ <dependency >
99
+ <groupId >com.fasterxml.jackson.core</groupId >
100
+ <artifactId >jackson-annotations</artifactId >
101
+ <version >${jackson.version} </version >
102
+ </dependency >
103
+ <dependency >
104
+ <groupId >com.fasterxml.jackson.core</groupId >
105
+ <artifactId >jackson-databind</artifactId >
106
+ <version >${jackson.version} </version >
107
+ </dependency >
108
+ <dependency >
109
+ <groupId >com.fasterxml.jackson.core</groupId >
110
+ <artifactId >jackson-core</artifactId >
111
+ <version >${jackson.version} </version >
112
+ </dependency >
113
+ <dependency >
114
+ <groupId >com.fasterxml.jackson.datatype</groupId >
115
+ <artifactId >jackson-datatype-jsr310</artifactId >
116
+ <version >${jackson.version} </version >
117
+ </dependency >
118
+
119
+ <!-- db connectors -->
120
+ <dependency >
121
+ <groupId >mysql</groupId >
122
+ <artifactId >mysql-connector-java</artifactId >
123
+ <version >${mysql-connector.version} </version >
124
+ </dependency >
125
+
126
+ <dependency >
127
+ <groupId >com.h2database</groupId >
128
+ <artifactId >h2</artifactId >
129
+ <version >${h2.version} </version >
130
+ </dependency >
131
+
132
+ <!-- sl4j -->
133
+ <dependency >
134
+ <groupId >org.slf4j</groupId >
135
+ <artifactId >slf4j-api</artifactId >
136
+ <version >${slf4j.version} </version >
137
+ </dependency >
138
+ <dependency >
139
+ <groupId >org.slf4j</groupId >
140
+ <artifactId >slf4j-log4j12</artifactId >
141
+ <version >${slf4j.version} </version >
142
+ </dependency >
143
+ <!-- logback -->
144
+ <dependency >
145
+ <groupId >ch.qos.logback</groupId >
146
+ <artifactId >logback-classic</artifactId >
147
+ <version >${logback.version} </version >
148
+ </dependency >
149
+ <dependency >
150
+ <groupId >ch.qos.logback</groupId >
151
+ <artifactId >logback-core</artifactId >
152
+ <version >${logback.version} </version >
153
+ </dependency >
154
+
155
+ <dependency >
156
+ <groupId >com.google.guava</groupId >
157
+ <artifactId >guava</artifactId >
158
+ <version >${guava.version} </version >
159
+ </dependency >
160
+
161
+ <dependency >
162
+ <groupId >org.apache.commons</groupId >
163
+ <artifactId >commons-collections4</artifactId >
164
+ <version >${commons-collections4.version} </version >
165
+ </dependency >
166
+
167
+ <dependency >
168
+ <groupId >commons-io</groupId >
169
+ <artifactId >commons-io</artifactId >
170
+ <version >${commons-io.version} </version >
171
+ </dependency >
172
+
173
+ <dependency >
174
+ <groupId >joda-time</groupId >
175
+ <artifactId >joda-time</artifactId >
176
+ <version >${joda-time.version} </version >
177
+ </dependency >
178
+
179
+ <dependency >
180
+ <groupId >org.springframework.cloud</groupId >
181
+ <artifactId >spring-cloud-dependencies</artifactId >
182
+ <version >${spring-cloud-dependencies.version} </version >
183
+ <type >pom</type >
184
+ <scope >import</scope >
185
+ </dependency >
186
+
187
+ <dependency >
188
+ <groupId >org.yaml</groupId >
189
+ <artifactId >snakeyaml</artifactId >
190
+ <version >${snakeyaml.version} </version >
191
+ </dependency >
192
+
46
193
</dependencies >
47
194
</dependencyManagement >
48
195
0 commit comments