|
70 | 70 | <type>pom</type> |
71 | 71 | <scope>import</scope> |
72 | 72 | </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> |
73 | 120 | </dependencies> |
74 | 121 | </dependencyManagement> |
75 | 122 |
|
|
79 | 126 | <artifactId>spring-boot-properties-migrator</artifactId> |
80 | 127 | <scope>runtime</scope> |
81 | 128 | </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>org.springframework.boot</groupId> |
| 131 | + <artifactId>spring-boot-starter-data-jdbc</artifactId> |
| 132 | + </dependency> |
82 | 133 | <dependency> |
83 | 134 | <groupId>org.springframework.boot</groupId> |
84 | 135 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
85 | 136 | </dependency> |
86 | 137 | <dependency> |
87 | 138 | <groupId>org.springframework.boot</groupId> |
88 | | - <artifactId>spring-boot-starter-mail</artifactId> |
| 139 | + <artifactId>spring-boot-starter-data-solr</artifactId> |
89 | 140 | </dependency> |
90 | 141 | <dependency> |
91 | 142 | <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> |
93 | 148 | </dependency> |
94 | 149 | <dependency> |
95 | 150 | <groupId>org.springframework.boot</groupId> |
|
101 | 156 | </dependency> |
102 | 157 | <dependency> |
103 | 158 | <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> |
105 | 164 | </dependency> |
106 | 165 | <dependency> |
107 | 166 | <groupId>org.postgresql</groupId> |
|
118 | 177 | <artifactId>lombok</artifactId> |
119 | 178 | <optional>false</optional> |
120 | 179 | </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 | | ---> |
133 | 180 | <dependency> |
134 | 181 | <groupId>org.webjars</groupId> |
135 | 182 | <artifactId>font-awesome</artifactId> |
136 | | - <version>5.8.1</version> |
137 | 183 | </dependency> |
138 | 184 | <dependency> |
139 | 185 | <groupId>org.webjars</groupId> |
140 | 186 | <artifactId>jquery</artifactId> |
141 | | - <version>3.3.1-2</version> |
142 | 187 | </dependency> |
143 | 188 | <dependency> |
144 | 189 | <groupId>org.webjars</groupId> |
145 | 190 | <artifactId>popper.js</artifactId> |
146 | | - <version>1.14.7</version> |
147 | 191 | </dependency> |
148 | 192 | <dependency> |
149 | 193 | <groupId>org.webjars</groupId> |
150 | 194 | <artifactId>bootstrap</artifactId> |
151 | | - <version>4.3.1</version> |
152 | 195 | </dependency> |
153 | 196 | <dependency> |
154 | 197 | <groupId>org.webjars</groupId> |
155 | 198 | <artifactId>ckeditor</artifactId> |
156 | | - <version>4.11.3</version> |
157 | 199 | </dependency> |
158 | 200 | <dependency> |
159 | 201 | <groupId>org.springframework.session</groupId> |
|
178 | 220 | <dependency> |
179 | 221 | <groupId>io.github.jpenren</groupId> |
180 | 222 | <artifactId>thymeleaf-spring-data-dialect</artifactId> |
181 | | - <version>3.4.0</version> |
182 | 223 | </dependency> |
183 | 224 | <dependency> |
184 | 225 | <groupId>org.jsoup</groupId> |
185 | 226 | <artifactId>jsoup</artifactId> |
186 | | - <version>1.8.3</version> |
187 | 227 | </dependency> |
188 | 228 | <dependency> |
189 | 229 | <groupId>org.junit.jupiter</groupId> |
190 | 230 | <artifactId>junit-jupiter-engine</artifactId> |
191 | | - <version>5.4.0</version> |
192 | 231 | <scope>test</scope> |
193 | 232 | </dependency> |
194 | 233 | <dependency> |
195 | 234 | <groupId>org.junit.jupiter</groupId> |
196 | 235 | <artifactId>junit-jupiter-api</artifactId> |
197 | | - <version>5.4.0</version> |
198 | 236 | <scope>test</scope> |
199 | 237 | </dependency> |
200 | 238 | </dependencies> |
|
0 commit comments