mvn命令将 ueditor百度富文本编辑器 所需jar包上传到本地maven仓库
1、需要的jar包位置
在解压后的路径中的jsp/lib下:(UEditor\jsp\lib)
2、打开命令行窗口
WIN+R
输入cmd并回车
直接在命令行输入如下命令:(一个一个输入运行,里面的路径需要改成自己的)
所需的mvn命令如下:
1 mvn install:install-file -DgroupId=commons-codec -DartifactId=commons-codec -Dversion=1.9 -Dpackaging=jar -Dfile=G:/A科技政策系统/ueditor/jsp/lib/commons-codec-1.9.jar 2 3 mvn install:install-file -DgroupId=commons-fileupload -DartifactId=commons-fileupload -Dversion=1.3.1 -Dpackaging=jar -Dfile=G:/A科技政策系统/ueditor/jsp/lib/commons-fileupload-1.3.1.jar 4 5 mvn install:install-file -DgroupId=commons-io -DartifactId=commons-io -Dversion=2.4 -Dpackaging=jar -Dfile=G:/A科技政策系统/ueditor/jsp/lib/commons-io-2.4.jar 6 7 mvn install:install-file -DgroupId=org.json -DartifactId=json -Dversion=20160810 -Dpackaging=jar -Dfile=G:/A科技政策系统/ueditor/jsp/lib/json.jar 8 9 mvn install:install-file -DgroupId=com.baidu -DartifactId=ueditor -Dversion=1.1.2 -Dpackaging=jar -Dfile=G:/A科技政策系统/ueditor/jsp/lib/ueditor-1.1.2.jar
运行成功会看到如下界面:
3、在项目中添加maven依赖
1 <!-- UEditor -->
2 <dependency>
3 <groupId>com.baidu</groupId>
4 <artifactId>ueditor</artifactId>
5 <version>1.1.2</version>
6 </dependency>
7
8 <dependency>
9 <groupId>org.json</groupId>
10 <artifactId>json</artifactId>
11 <version>20160810</version>
12 </dependency>
13
14 <dependency>
15 <groupId>commons-io</groupId>
16 <artifactId>commons-io</artifactId>
17 <version>2.4</version>
18 </dependency>
19
20 <dependency>
21 <groupId>commons-codec</groupId>
22 <artifactId>commons-codec</artifactId>
23 <version>1.9</version>
24 </dependency>
25
26 <dependency>
27 <groupId>commons-fileupload</groupId>
28 <artifactId>commons-fileupload</artifactId>
29 <version>1.3.1</version>
30 </dependency>
31
32 <!-- UEditor -->
好看请赞,养成习惯:) 本文来自博客园,作者:靠谱杨, 转载请注明原文链接:https://www.cnblogs.com/rainbow-1/p/16371335.html
欢迎来我的51CTO博客主页踩一踩 我的51CTO博客
文章中的公众号名称可能有误,请统一搜索:靠谱杨的秘密基地