当前位置: 首页 > 知识库问答 >
问题:

maven pom文件有html代码而不是xml

秦才良
2023-03-14

我正在从命令行运行mvn install,并得到以下错误...

[ERROR] Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one   of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6: 1 problem was encountered while building the effective model
[ERROR] [FATAL] Non-parseable POM C:\Users\Gary\.m2\repository\org\apache\maven\plugins\maven-resources-plugin\2.6\maven-resources-plugin-2.6.pom: entity reference names can not start with character '&' (position: START_TAG seen ...nction d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&... @14:89)  @ line 14, column 89

我决定在我的本地maven存储库中打开maven-resources-plugin:2.6的pom文件,这就是我所发现的:

maven-resources-plugin-2.6.pom

<!DOCTYPE html>
<html lang="de-DE">
<head>
<title>Mein Block &#8211; Ein weiterer WordPress-Blog</title>
<meta name='robots' content='noindex,follow' />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="template" content="Ignite 1.60" />
<meta name="generator" content="WordPress 4.5.3" />
<link rel="alternate" type="application/rss+xml" title="Mein Block &raquo; 
...
#NOTE: This is an Aether internal implementation file, its format can be    changed without prior notice.
#Thu Jul 14 10:22:00 EDT 2016
maven-resources-plugin-2.6.pom>release-repo1.php-maven.org=
maven-resources-plugin-2.6.pom>central=

共有1个答案

章飞章
2023-03-14

当我在项目中有公司存储库,而我不在VPN上时,我有这个。为了获取所有的libs,我这样做:

1._i在开始时向pom.xml添加Mvn依赖项(如果没有,可以省略此步骤):

<repositories>
    <repository>
        <id>mvn</id>
        <name>mvn</name>
        <url>http://maven.icm.edu.pl/artifactory/repo/</url>
    </repository>
...other resps

2._I删除整个。m2/repositories dir或搜索损坏的文件:

grep -R -l -L groupId  --include \*.pom   //Search all that not contain groupId string
 类似资料:
  • 问题内容: 这个IFRAME的标准代码,是否有一种方法可以将src URL替换为Just html代码?所以我的问题很简单,我有一个页面,它加载了来自MySQL的HTML主体,我想在框架中显示该代码,以便使其独立于页面的其余部分,并不受特定边界的限制。 问题答案: 您可以使用数据URL进行此操作。这将整个文档包含在单个HTML字符串中。例如,以下HTML: 可以这样编码: 然后设置为iframe

  • 在Gradle多模块项目中,如何告诉Gradle子模块不要构建任何libs/jar和其他依赖项?maven

  • 我使用Thymeleaf处理html模板,我了解如何从控制器中附加内联字符串,但现在我想在页面中附加一段html代码。 例如,让我们留在我的java应用程序中: 我需要在html页面中写些什么,以便用“n”变量替换它,并作为html代码处理,而不是将其编码为文本?

  • 我对IntelliJ有问题--如果我用Ctrl+单击该类,它会显示一个类的“反编译”版本,而不是它的源代码。 这就是我所看到的: 我正在尝试打开常规的JDK源文件。 src.zip没有损坏-我可以通过WinRAR打开它 当将JDK1.8.0_161添加到IntelliJ中时,它会自动找到src.zip。当手动将src.zip添加到jbsdk8u112b287.2_windows_x86 Sourc

  • 我试图运行Spring启动应用程序,这将返回我静态文件夹上的超文本标记语言静态文件,问题是:每次我加载页面:127.0.0.1我得到字符串"bakara",而不是超文本标记语言文件bakara.html.,当我加载127.0.0.1/bakara.html我得到bakara.html文件 pom.xml: 应用属性: HomeController.java: 项目结构: