猿问

缺少 maven-compiler-plugin:jar:3.8.1

尝试使用 3.8.1 而不是 3.8.0 但收到消息:


[警告] 缺少 org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1 的 POM,没有可用的依赖信息。


我的 pom.xml 适用于 3.8.0。特定问题除外。我期待已久的 3.8.1。根据 Maven Central,它似乎可用。但是简单地将我的 pom.xml 中的 3.8.0 更改为 3.8.1 会导致警告和失败消息:


无法解析插件 org.apache.maven.plugins:maven-compiler-plugin:3.8.1 或其依赖项之一:找不到 org.apache.maven.plugins:maven-compiler-plugin:jar:3.8.1在https://repo.maven.apache.org/maven2被缓存在本地仓库中,直到 central 的更新间隔结束或强制更新后才会重新尝试解析 -> [求助 1]


        <plugin>

            <artifactId>maven-compiler-plugin</artifactId>

            <version>3.8.1</version>

            <configuration>

                <source>11</source>

                <target>11</target>

                <debug>true</debug>

            </configuration>

        </plugin>

我误解了什么,在 Maven Central 中看到 3.8.1 但不能在我的 pom.xml 中使用它?


素胚勾勒不出你
浏览 512回答 2
2回答

www说

对我有帮助的是围绕带有以下标签的插件:<build>&nbsp; &nbsp; <pluginManagement>&nbsp; &nbsp; &nbsp; &nbsp; <plugins>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <plugin>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <groupId>org.apache.maven.plugins</groupId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <artifactId>maven-compiler-plugin</artifactId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <version>3.8.1</version>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </plugin>&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; </plugins>&nbsp; &nbsp; </pluginManagement></build>

有只小跳蛙

我有完全相同的问题。我注意到在 topicstarter 的代码中<groupId>不见了。也就是说,三重坐标“GAV”中没有“G”。我从 redCuckoo 代码中添加了一行:<groupId>org.apache.maven.plugins</groupId>这就是我的解决方案。
随时随地看视频慕课网APP

相关分类

Java
我要回答