STSでプログラムを作成中にpom.xmlにエラーが発生したので解決したいです。
STSでプロジェクトを作成中にWebページが表示されないエラーが発生したため、
C:\Users\ユーザ名.m2\repository 内のファイル・フォルダを全て削除して、pom.xmlを編集して保存することで削除したファイル・フォルダを再ダウンロードしようとしたところ、pom.xmlの1行目にエラーが発生しました。
該当プロジェクトのみでなく、これまで作成していたプロジェクトすべてに同じエラーが発生しています。
発生している問題・エラーメッセージ
Failure to transfer org.springframework.boot:spring-boot-maven-plugin:pom:2.3.0.RELEASE from https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. オリジナル・エラー: Could not transfer artifact org.springframework.boot:spring-boot-maven-plugin:pom:2.3.0.RELEASE from/to central (https://repo.maven.apache.org/maven2): 操作はキャンセルされました。
エラーメッセージ
該当のソースコード
<?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.3.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>jp.co.ShohinMaster</groupId>
<artifactId>ShohinMaster</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ShohinMaster</name>
<description>Demo project for Spring Boot</description>
</project><properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
ソースコード
試したこと
こちらのサイトで質問されていた方の内容を参考にして、 m2e connector for mavenarchiverをダウンロードしようとしましたが「新しいバージョンがすでにインストールされているため "Maven アーカイバー POM プロパティー m2e コネクター" は無視されます。 」と表示され、ダウンロードできませんでした。
https://teratail.com/questions/192767
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー