Skip to content

Commit 09d4a6f

Browse files
committed
migrate spring-boot
1 parent da306c7 commit 09d4a6f

File tree

2 files changed

+68
-24
lines changed

2 files changed

+68
-24
lines changed

etc/TODO.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# TODO
2+
3+
* https://www.baeldung.com/spring-session
4+
* EmbeddedSolrServer:
5+
* https://docs.spring.io/spring-data/solr/docs/4.1.6.RELEASE/reference/html/#solr.annotation
6+

pom.xml

Lines changed: 62 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,53 @@
7070
<type>pom</type>
7171
<scope>import</scope>
7272
</dependency>
73+
<dependency>
74+
<groupId>org.webjars</groupId>
75+
<artifactId>font-awesome</artifactId>
76+
<version>5.8.1</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.webjars</groupId>
80+
<artifactId>jquery</artifactId>
81+
<version>3.3.1-2</version>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.webjars</groupId>
85+
<artifactId>popper.js</artifactId>
86+
<version>1.14.7</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>org.webjars</groupId>
90+
<artifactId>bootstrap</artifactId>
91+
<version>4.3.1</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.webjars</groupId>
95+
<artifactId>ckeditor</artifactId>
96+
<version>4.11.3</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>io.github.jpenren</groupId>
100+
<artifactId>thymeleaf-spring-data-dialect</artifactId>
101+
<version>3.4.0</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.jsoup</groupId>
105+
<artifactId>jsoup</artifactId>
106+
<version>1.8.3</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.junit.jupiter</groupId>
110+
<artifactId>junit-jupiter-engine</artifactId>
111+
<version>5.4.0</version>
112+
<scope>test</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.junit.jupiter</groupId>
116+
<artifactId>junit-jupiter-api</artifactId>
117+
<version>5.4.0</version>
118+
<scope>test</scope>
119+
</dependency>
73120
</dependencies>
74121
</dependencyManagement>
75122

@@ -79,17 +126,25 @@
79126
<artifactId>spring-boot-properties-migrator</artifactId>
80127
<scope>runtime</scope>
81128
</dependency>
129+
<dependency>
130+
<groupId>org.springframework.boot</groupId>
131+
<artifactId>spring-boot-starter-data-jdbc</artifactId>
132+
</dependency>
82133
<dependency>
83134
<groupId>org.springframework.boot</groupId>
84135
<artifactId>spring-boot-starter-data-jpa</artifactId>
85136
</dependency>
86137
<dependency>
87138
<groupId>org.springframework.boot</groupId>
88-
<artifactId>spring-boot-starter-mail</artifactId>
139+
<artifactId>spring-boot-starter-data-solr</artifactId>
89140
</dependency>
90141
<dependency>
91142
<groupId>org.springframework.boot</groupId>
92-
<artifactId>spring-boot-starter-security</artifactId>
143+
<artifactId>spring-boot-starter-web</artifactId>
144+
</dependency>
145+
<dependency>
146+
<groupId>org.springframework.boot</groupId>
147+
<artifactId>spring-boot-starter-mail</artifactId>
93148
</dependency>
94149
<dependency>
95150
<groupId>org.springframework.boot</groupId>
@@ -101,7 +156,11 @@
101156
</dependency>
102157
<dependency>
103158
<groupId>org.springframework.boot</groupId>
104-
<artifactId>spring-boot-starter-web</artifactId>
159+
<artifactId>spring-boot-starter-security</artifactId>
160+
</dependency>
161+
<dependency>
162+
<groupId>org.springframework.boot</groupId>
163+
<artifactId>spring-boot-starter-test</artifactId>
105164
</dependency>
106165
<dependency>
107166
<groupId>org.postgresql</groupId>
@@ -118,42 +177,25 @@
118177
<artifactId>lombok</artifactId>
119178
<optional>false</optional>
120179
</dependency>
121-
122-
<dependency>
123-
<groupId>org.springframework.boot</groupId>
124-
<artifactId>spring-boot-starter-test</artifactId>
125-
</dependency>
126-
127-
<!--
128-
<dependency>
129-
<groupId>org.springframework.security</groupId>
130-
<artifactId>spring-security-test</artifactId>
131-
</dependency>
132-
-->
133180
<dependency>
134181
<groupId>org.webjars</groupId>
135182
<artifactId>font-awesome</artifactId>
136-
<version>5.8.1</version>
137183
</dependency>
138184
<dependency>
139185
<groupId>org.webjars</groupId>
140186
<artifactId>jquery</artifactId>
141-
<version>3.3.1-2</version>
142187
</dependency>
143188
<dependency>
144189
<groupId>org.webjars</groupId>
145190
<artifactId>popper.js</artifactId>
146-
<version>1.14.7</version>
147191
</dependency>
148192
<dependency>
149193
<groupId>org.webjars</groupId>
150194
<artifactId>bootstrap</artifactId>
151-
<version>4.3.1</version>
152195
</dependency>
153196
<dependency>
154197
<groupId>org.webjars</groupId>
155198
<artifactId>ckeditor</artifactId>
156-
<version>4.11.3</version>
157199
</dependency>
158200
<dependency>
159201
<groupId>org.springframework.session</groupId>
@@ -178,23 +220,19 @@
178220
<dependency>
179221
<groupId>io.github.jpenren</groupId>
180222
<artifactId>thymeleaf-spring-data-dialect</artifactId>
181-
<version>3.4.0</version>
182223
</dependency>
183224
<dependency>
184225
<groupId>org.jsoup</groupId>
185226
<artifactId>jsoup</artifactId>
186-
<version>1.8.3</version>
187227
</dependency>
188228
<dependency>
189229
<groupId>org.junit.jupiter</groupId>
190230
<artifactId>junit-jupiter-engine</artifactId>
191-
<version>5.4.0</version>
192231
<scope>test</scope>
193232
</dependency>
194233
<dependency>
195234
<groupId>org.junit.jupiter</groupId>
196235
<artifactId>junit-jupiter-api</artifactId>
197-
<version>5.4.0</version>
198236
<scope>test</scope>
199237
</dependency>
200238
</dependencies>

0 commit comments

Comments
 (0)