mvn打包及报错分析

普通打包命令:
  mvn clean install -Dmaven.test.skip=true
指定配置文件打包:
  mvn clean package -P prod -Dmaven.test.skip=true

      <profiles>
		...
		<profile>
	        <id>prod</id>
	        <properties>
	           <autoconfig.properties>prod.properties</autoconfig.properties>
	        </properties>
	    </profile>
	</profiles>    

使用idea中的命令窗口打包出现下面错误:
  error:
    No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
原因分析:
  1.查看idea的jdk的环境都是直接配置的jdk,未发现问题原因
  2.在git的cmd中使用命令进行编译还是不行,和idea环境无关
  3.查看javac编译命令是否可以执行,找不到命令,重新配置了jdk环境
  总结:之前jdk安装,自动添加jdk路径添加path环境变量中,编译命令的地址并没有自动配置到环境变量中

原文地址:https://www.cnblogs.com/2014-1130/p/9135136.html

时间: 2024-10-12 07:49:17

mvn打包及报错分析的相关文章

shell 脚本执行mvn clean install 报错 --MissingProjectException

ll 脚本执行mvn clean install 报错 12月12日北京OSC源创会 —— 开源技术的年终盛典 »   [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] --------------------------------------------------

解决Eclipse不能打包APK报错的问题

1.在Android SDK Tool r19之后, Export的时候遇到xxx is not translated in yyy, zzz的问题. 例如说"auto_exit" is not translated in zh, zh_CN. 这是因为Android SDK Tool 將 ANDROID_LINT_COMPLETE_REGIONS 改为了需要检查. 临时解决方法:Eclipse > Preference > Android > Lint Error

mvn archetype:generate报错

问题:执行mvn archetype:generate报错如下图0.(执行mvn -e archetype:generate可以看到更详细的报错信息) 图0. 报错信息 本地的nexus的public Repositories中没有archetype-common-2.1.jar,但2.2目录下正常.如下图1. 这是由于public group使用了Central库,Central库中也没有archetype-common-2.1.jar.如下图2所示. 另一方面,Central remote库

Py打包exe报错

? Py打包exe报错 ? ? ? 下载地址 https://github.com/pyinstaller/pyinstaller ? ? ? 用管理员执行 ? pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz

const变量赋值报错分析

const变量赋值报错分析 const变量赋值报错 从变量到常量的赋值是合法C++的语法约定的, 如从char 到const char顺畅: 但从char **到 const char **编译器就会报错: error: invalid conversion from `char**' to `const char**' 示例: int main(int argc, char *argv[]) { char a = '1'; const char b = a; char * a2 = "1234

reactNative环境搭建+打包+部分报错总结

个人搭建记录+个人收集: 多些真诚,少些坑. 排版书写过程可能不够详细,还望见谅. 详细见:http://files.cnblogs.com/files/chunlei36/reactNative%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA%26%E6%89%93%E5%8C%85%26%E6%8A%A5%E9%94%99%E6%80%BB%E7%BB%93.pdf reactNative环境搭建+打包+部分报错总结

zabbix报错分析

zabbix报错分析 报错信息如下: 3128:20150429:114455.871 history data from active proxy on "115.29.182.109" failed: proxy "jinrong" not found 查找源码 [[email protected] src]# grep "history data from active proxy" * -r|more zabbix_server/trap

学会WCF之试错法——安全配置报错分析

安全配置报错分析 服务端配置 <system.serviceModel> <bindings> <wsHttpBinding> <binding name ="WsHttpBinding_IService" maxReceivedMessageSize="370000" receiveTimeout="00:10:01" maxBufferPoolSize="100"> <

mvn archetype:create报错解决办法

执行下列命令:mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -X  会报错: 此时将archetype:create 改为archetype:generate,执行下列命令: mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -X 此时加上-DarchetypeCatalog=internal,执行下列命令:mvn