我是Maven的新手,并尝试在Maven中设置我的第一个项目,但是在Eclipse中执行“ Run as-> Maven install”时收到以下错误消息。以下是我的settings.xml和pom.xmlSettings.xml <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository>C:\Users\Iam\.m2\repository</localRepository> <profiles> <profile> <repositories> <repository> <id>central</id> <url>http://central.maven.org/maven2/</url> </repository> </repositories> <pluginRepositories> </pluginRepositories> </profile> </profiles></settings>POM文件<?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.mytest</groupId> <artifactId>MySpringBootMaven</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.11.RELEASE</version> </parent><build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.5</version><!--$NO-MVN-MAN-VER$--> <configuration> <warnName>Test.war</warnName> </configuration> </plugin> </plugins></build></project>
4 回答
慕运维8079593
TA贡献1876条经验 获得超5个赞
对于永久解决方案(在Java 7中通常是必需的)-在构建目录(执行mvn
命令的位置)中添加目录:
.mvn
(以cmd表示mkdir .mvn
)
并在其中创建文件
jvm.config
并放入以下行:
-Dhttps.protocols=TLSv1.2
小唯快跑啊
TA贡献1863条经验 获得超2个赞
最简单的解决方案是配置JVM运行时参数。在eclipse上,您可以按照以下步骤进行操作:
转到Windows> preferences> java>已安装的JRE,单击用于项目的Intalled JRE / JDK
单击右侧的“编辑”,然后添加 -Dhttps.protocols=TLSv1.2
“默认VM参数输入”字段。
看截图:
添加回答
举报
0/150
提交
取消