
maven
Mint6
这个作者很懒,什么都没留下…
展开
-
IntelliJ Compilation Error zip END header not found
使用maven编译的时候报错:zip END header not found。找到错误的jar并删除。然后重新编译就可以正常通过了。macos操作系统,在终端里执行以下命令,maven下载的某个包存在问题。原创 2023-02-20 00:59:38 · 946 阅读 · 0 评论 -
maven的setting配置文件模版
<?xml version="1.0" encoding="UTF-8"?><!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the NOTICE filedistributed with this work for additional informationregarding copyright ownersh.原创 2021-12-20 17:50:56 · 599 阅读 · 0 评论 -
java maven发包命令
备忘发包命令mvn deploy:deploy-file -DgroupId=*** -DartifactId=*** -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=本地jar包的绝对路径 -Durl=发包仓库 -DrepositoryId=snapshots原创 2021-07-02 11:44:40 · 323 阅读 · 0 评论 -
springboot项目打zip包之打包插件assembly
maven配置打包插件assembly,一般打这个包是要配置自动化部署jenkins等工具需要。pom.xml<plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> ...原创 2019-11-02 23:53:09 · 1509 阅读 · 0 评论 -
maven的 <properties> 标签统一管理版本出现的错误
在pom中使用<properties>标签统一管理jar版本号<properties><hutool.version>4.1.14</hutool.version></properties>然后在下面引入 <dependency> <groupId>cn.hu原创 2018-09-24 16:37:25 · 3031 阅读 · 2 评论 -
maven设置国内jar私服,比如阿里的私服
打开maven文件找到conf打开settings.xml文件搜索<mirrors></mirrors>在这中间加上阿里的jar仓库 <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http原创 2018-06-10 19:36:00 · 1340 阅读 · 0 评论 -
Eclipse启动tomcat报错,提示三个端口被占用。
Several ports (8005, 8080, 8009) required by Tomcat v8.5 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To sta...原创 2018-06-07 21:59:29 · 2204 阅读 · 0 评论 -
eclipse查看maven各个jar的依赖关系
隐性依赖引起的jar包冲突,打开pom文件点击dependency hierarchydependency hierarchy:依赖层次视图resolved dependencies:依存关系解析点击右边jar,可以在左边找到对应关系。...原创 2018-06-07 21:45:52 · 16490 阅读 · 0 评论 -
maven No plugin found for prefix 'war
No plugin found for prefix 'war' in the current project and in the plugin groupspom.xml加入 org.apache.maven.plugins maven-resources-plugin 2.5 接着maven cleanmaven install 解决原创 2017-10-22 19:28:58 · 3529 阅读 · 0 评论 -
最全的pom.xml中文详解
span style="padding:0px; margin:0px">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转载 2017-10-22 18:21:37 · 1436 阅读 · 0 评论