###前提、実現したいこと
spring bootのプロジェクトのpom.xmlエラーを解決したい
環境
windows10
eclipce(pleiades full edition)
spring tool4
###起こっている問題、エラーメッセージ
下の画像のような設定でプロジェクトを作成したところ、作成した直後からpom.xmlファイル五行目でエラーメッセージが発生します。
説明 リソース パス ロケーション タイプ プロジェクト・ビルド・エラー: Non-resolvable parent POM for com.example:sprintgboot.test-1:0.0.1-SNAPSHOT: Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:2.4.4 from/to central (https://repo.maven.apache.org/maven2): C:\Users\username.m2\repository\org\springframework\boot\spring-boot-starter-parent\2.4.4\aether-4f9dbc48-94b6-4323-bfc6-1407167c2b21-spring-boot-starter-parent-2.4.4.pom-in-progress (指定されたパスが見つかりません。) and 'parent.relativePath' points at no local POM pom.xml /sprintgboot.test-1 行 5 Maven 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.4</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>sprintgboot.test-1</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <name>sprintgboot.test-1</name> <description>Demo project for Spring Boot</description> <properties> <java.version>11</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.4</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
###試したこと
同じような問題が発生した人の解決方法に.m2/repository直下の全ファイルを削除とありましたがエクスプローラーから確認したところ、.m2ファイルが見つかりませんでした
javaのバージョンを変えて作成してみましたが、同じようにエラーが出ました
回答1件
あなたの回答
tips
プレビュー