包管理 mvn
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | <? xml version="1.0" encoding="UTF-8"?> < project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> < modelVersion >4.0.0</ modelVersion > < groupId >com.ruoyi</ groupId > < artifactId >bbs</ artifactId > < version >1.0.0</ version > < name >bbs</ name > < url >http://test.cn</ url > < description >心声社区管理系统</ description > < properties > < ruoyi.version >1.0.0</ ruoyi.version > < project.build.sourceEncoding >UTF-8</ project.build.sourceEncoding > < project.reporting.outputEncoding >UTF-8</ project.reporting.outputEncoding > < java.version >1.8</ java.version > < maven-jar-plugin.version >3.1.1</ maven-jar-plugin.version > < druid.version >1.2.6</ druid.version > < bitwalker.version >1.21</ bitwalker.version > < swagger.version >3.0.0</ swagger.version > < kaptcha.version >2.3.2</ kaptcha.version > < mybatis-spring-boot.version >2.1.4</ mybatis-spring-boot.version > < pagehelper.boot.version >1.3.1</ pagehelper.boot.version > < fastjson.version >1.2.78</ fastjson.version > < oshi.version >5.8.0</ oshi.version > < jna.version >5.8.0</ jna.version > < commons.io.version >2.11.0</ commons.io.version > < commons.fileupload.version >1.4</ commons.fileupload.version > < commons.collections.version >3.2.2</ commons.collections.version > < poi.version >4.1.2</ poi.version > < velocity.version >1.7</ velocity.version > < jwt.version >0.9.1</ jwt.version > </ properties > <!-- 依赖声明 --> < dependencyManagement > < dependencies > <!-- SpringBoot的依赖配置--> < dependency > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-dependencies</ artifactId > < version >2.2.13.RELEASE</ version > < type >pom</ type > < scope >import</ scope > </ dependency > <!-- 阿里数据库连接池 --> < dependency > < groupId >com.alibaba</ groupId > < artifactId >druid-spring-boot-starter</ artifactId > < version >${druid.version}</ version > </ dependency > <!-- 解析客户端操作系统、浏览器等 --> < dependency > < groupId >eu.bitwalker</ groupId > < artifactId >UserAgentUtils</ artifactId > < version >${bitwalker.version}</ version > </ dependency > <!-- SpringBoot集成mybatis框架 --> < dependency > < groupId >org.mybatis.spring.boot</ groupId > < artifactId >mybatis-spring-boot-starter</ artifactId > < version >${mybatis-spring-boot.version}</ version > </ dependency > <!-- pagehelper 分页插件 --> < dependency > < groupId >com.github.pagehelper</ groupId > < artifactId >pagehelper-spring-boot-starter</ artifactId > < version >${pagehelper.boot.version}</ version > </ dependency > <!-- 获取系统信息 --> < dependency > < groupId >com.github.oshi</ groupId > < artifactId >oshi-core</ artifactId > < version >${oshi.version}</ version > </ dependency > < dependency > < groupId >net.java.dev.jna</ groupId > < artifactId >jna</ artifactId > < version >${jna.version}</ version > </ dependency > < dependency > < groupId >net.java.dev.jna</ groupId > < artifactId >jna-platform</ artifactId > < version >${jna.version}</ version > </ dependency > <!-- Swagger3依赖 --> < dependency > < groupId >io.springfox</ groupId > < artifactId >springfox-boot-starter</ artifactId > < version >${swagger.version}</ version > < exclusions > < exclusion > < groupId >io.swagger</ groupId > < artifactId >swagger-models</ artifactId > </ exclusion > </ exclusions > </ dependency > <!-- io常用工具类 --> < dependency > < groupId >commons-io</ groupId > < artifactId >commons-io</ artifactId > < version >${commons.io.version}</ version > </ dependency > <!-- 文件上传工具类 --> < dependency > < groupId >commons-fileupload</ groupId > < artifactId >commons-fileupload</ artifactId > < version >${commons.fileupload.version}</ version > </ dependency > <!-- excel工具 --> < dependency > < groupId >org.apache.poi</ groupId > < artifactId >poi-ooxml</ artifactId > < version >${poi.version}</ version > </ dependency > <!-- velocity代码生成使用模板 --> < dependency > < groupId >org.apache.velocity</ groupId > < artifactId >velocity</ artifactId > < version >${velocity.version}</ version > < exclusions > < exclusion > < groupId >commons-collections</ groupId > < artifactId >commons-collections</ artifactId > </ exclusion > </ exclusions > </ dependency > <!-- collections工具类 --> < dependency > < groupId >commons-collections</ groupId > < artifactId >commons-collections</ artifactId > < version >${commons.collections.version}</ version > </ dependency > <!-- 阿里JSON解析器 --> < dependency > < groupId >com.alibaba</ groupId > < artifactId >fastjson</ artifactId > < version >${fastjson.version}</ version > </ dependency > <!-- Token生成与解析--> < dependency > < groupId >io.jsonwebtoken</ groupId > < artifactId >jjwt</ artifactId > < version >${jwt.version}</ version > </ dependency > <!-- 验证码 --> < dependency > < groupId >com.github.penggle</ groupId > < artifactId >kaptcha</ artifactId > < version >${kaptcha.version}</ version > </ dependency > <!-- 定时任务--> < dependency > < groupId >com.ruoyi</ groupId > < artifactId >bbs-quartz</ artifactId > < version >${ruoyi.version}</ version > </ dependency > <!-- 代码生成--> < dependency > < groupId >com.ruoyi</ groupId > < artifactId >bbs-generator</ artifactId > < version >${ruoyi.version}</ version > </ dependency > <!-- 核心模块--> < dependency > < groupId >com.ruoyi</ groupId > < artifactId >bbs-framework</ artifactId > < version >${ruoyi.version}</ version > </ dependency > <!-- 系统模块--> < dependency > < groupId >com.ruoyi</ groupId > < artifactId >bbs-system</ artifactId > < version >${ruoyi.version}</ version > </ dependency > <!-- 通用工具--> < dependency > < groupId >com.ruoyi</ groupId > < artifactId >bbs-common</ artifactId > < version >${ruoyi.version}</ version > </ dependency > </ dependencies > </ dependencyManagement > < modules > < module >bbs-admin</ module > < module >bbs-framework</ module > < module >bbs-system</ module > < module >bbs-quartz</ module > < module >bbs-generator</ module > < module >bbs-common</ module > </ modules > < packaging >pom</ packaging > < dependencies > </ dependencies > < build > < plugins > < plugin > < groupId >org.apache.maven.plugins</ groupId > < artifactId >maven-compiler-plugin</ artifactId > < version >3.1</ version > < configuration > < source >${java.version}</ source > < target >${java.version}</ target > < encoding >${project.build.sourceEncoding}</ encoding > </ configuration > </ plugin > </ plugins > </ build > < repositories > < repository > < id >public</ id > < name >aliyun nexus</ name > < url >http://maven.aliyun.com/nexus/content/groups/public/</ url > < releases > < enabled >true</ enabled > </ releases > </ repository > </ repositories > < pluginRepositories > < pluginRepository > < id >public</ id > < name >aliyun nexus</ name > < url >http://maven.aliyun.com/nexus/content/groups/public/</ url > < releases > < enabled >true</ enabled > </ releases > < snapshots > < enabled >false</ enabled > </ snapshots > </ pluginRepository > </ pluginRepositories > </ project > |
bbs-web\pom.xml 在该目录下,执行mvn install。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
2020-12-22 gRPC Motivation and Design Principles | gRPC https://grpc.io/blog/principles/
2019-12-22 linux中高并发socket最大连接数的优化详解
2019-12-22 socket数
2017-12-22 数据教训 有计划地且按时按量地产生(更新)数据
2017-12-22 sql 语法树 常量
2017-12-22 定时任务 bash 对远程数据库 备份 读写
2017-12-22 监控脚本更新数据结果 要求当前小时更新的数据 所分布的产生时间