mvn install

mvn install:install-file \

-DgroupId=com.weibo.datasys.weistreamng \

-DartifactId=weistreamng-092-framework \

-Dversion=0.0.32-jar-with-dependencies \

-Dpackaging=jar \

-Dfile=target/weistreamng-092-framework-0.0.32-jar-with-dependencies.jar

时间: 2024-10-09 06:36:38

mvn install的相关文章

Eclipse中mvn install 报错error in opening zip file

报错信息 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project wms: Compilation failure [ERROR] Failure executing javac, but could not parse the error: [ERROR] 错误: 读取C:\Users\Administrato

mvn install 报错Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2 错误: 找不到符号

报错信息 在Eclipse中执行mvn install时,console端显示如下报错信息: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project ERP: Compilation failure: Compilation failure: [ERROR] \test01\src\main\java\HStyl

mvn install 打包

mvn install 打包的时候 特别注意下.文档注释. 如果接口上面有这样的注释. mvn install 安装的时候是会报错的. 会有类似的提示. 完整命令: mvn clean install -D maven.javadoc.skip=true 跳过javadoc文档部分. 即可. 原文地址:https://www.cnblogs.com/1-Admin/p/9235219.html

maven添加本地包命令mvn install:install-file

mvn install:install-file -DgroupId=com.xinyartech -DartifactId=easyexcel -Dversion=1.1.1 -Dpackaging=jar -Dfile=/root/shell/easyexcel-1.1.1.jar -Dfile:要注册的jar,绝对路径 原文地址:https://www.cnblogs.com/linjiqin/p/11447993.html

【maven】Maven插件篇 --- maven项目 mvn install 报错: Failed to execute goal on project 项目名: Could not resolve dependencies for project

参考:Maven实用技巧 https://msd.misuland.com/pd/3255817963235707346 报错: maven项目 mvn install 报错: [ERROR] Failed to execute goal on project 项目名XXX: Could not resolve dependencies for project com.项目名XXX:war:1.0.0-SNAPSHOT: Failure to find 项目名1XXX:jar:0.1.0-SNA

mvn install把代码安装到本地仓库

在pom.xm文件中增加以下配置 <plugin>   <groupId>org.apache.maven.plugins</groupId>   <artifactId>maven-source-plugin</artifactId>   <version>2.1.2</version>   <executions> <execution>   <id>attach-sources&l

6) mvn archetype:create-from-project

cd %old%mvn archetype:create-from-projectcd %old%/target/generated-sources/archetype mvn installcd %newParent% mvn archetype:generate -DarchetypeCatalog=local 步骤:生成原型安装到本地使用本地该原型位置 ~\.m2\repository\cn\zxg\struts-hello-archetype\1.0\struts-hello-arche

eclipse中maven install和build,clean

eclipse插件,m2eclipse 1.maven install相当于maven原生的命令: mvn install 2.aven build是 m2eclipse这个插件自己创造的概念,需要你来配置到底需要执行什么命令,如下图中的goals输入的就是你想执行的命令:

将jar或者aar发布到到mvn 中(用github作为仓库), 通过gradle dependency 方式集成

使用Android Studio开发的用户,都希望通过maven远程仓库的方式来集成jar.aar文件,但是这些文件时如何发布的呢? 通常开发者都会将jar文件发布到sonatype上,以提供给其他开发者集成,但是sonatype要求必须提供源码,而有些情况下,发布者并不想提供源码,这样可以使用本文介绍的方法. 下面就为大家讲解如何在github上创建仓库,将jar和aar文件发布到maven中,以及如何集成. 第一步: 在github.com 上创建一个repo,专门用作maven仓库使用.