###前提・実現したいこと
初質問です。
フレームワークspringにてMaven projectを新規に作成しpomを設定しているのですがpom設定画面にて以下のエラーメッセージが発生しました。
ご教授いただけませんでしょうか。
何卒よろしくお願いいたします。
###発生している問題・エラーメッセージ
エラーメッセージ
Description Resource Path Location Type
Error resolving version for plugin 'org.apache.maven.plugins:maven-compile-plugin' from the repositories [local (/Users/ユーザー名/.m2/repository), central (https://repo.maven.apache.org/maven2)]: Plugin not found in any plugin repository pom.xml /bulletinboard line 1 Maven pom Loading Problem
###該当のソースコード
ここで上記エラーが発生<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>first</groupId>
<artifactId>bulletinboard
</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>bulletinboard"pom.xml"
Maven Webapp</name>
<url>http://maven.apache.org</url>
<build> <finalName>bulletinboard</finalName> <pluginManagement> <plugins> <plugin> <artifactId>maven-compile-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project><dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.taglibs</groupId> <artifactId>taglibs-standard-jstlel</artifactId> </dependency> </dependencies>

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/01/07 08:30
2017/01/07 15:35
2017/01/17 11:47