gpt4 book ai didi

java - Wro4j maven 插件 : Invalid wro. xml

转载 作者:行者123 更新时间:2023-11-30 07:21:29 24 4
gpt4 key购买 nike

我正在尝试让 wro4j maven 插件正常工作,不幸的是,我遇到了一个错误,我不太明白这是什么原因:

[ERROR] Failed to execute goal ro.isdc.wro4j:wro4j-maven-plugin:1.5.0:run (proprocess-   resources) on project someapp-webapp: Exception occured while processing: startup failed:
[ERROR] Script1.groovy: 1: unexpected token: < @ line 1, column 1.
[ERROR] <groups xmlns="http://www.isdc.ro/wro"

这是我的配置:

pom.xml:

<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>

<executions>
<execution>
<id>proprocess-resources</id>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>

<configuration>
<targetGroups>all</targetGroups>
<wroFile>src/build/wro.xml</wroFile>
<destinationFolder>${project.build.directory}/dist</destinationFolder>
<contextFolder>${basedir}/src/main/webapp/</contextFolder>
<extraConfigFile>src/build/wro.properties</extraConfigFile>
</configuration>

</plugin>

这是我的 wro.xml 文件:

<groups xmlns="http://www.isdc.ro/wro"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.isdc.ro/wro wro.xsd">

<group name="all">
<js>/src/main/webapp/js</js>
<css>/src/main/webapp/css</css>
</group>

</groups>

我还有一个 wro.properties 文件:

debug=true
gzipResources=false
ignoreMissingResources=true
jmxEnabled=true
managerFactoryClassName=ro.isdc.wro.examples.manager.CustomWroManager
preProcessors=sassCss

我在 wro4j 文档中没有看到我可能遗漏的内容,如果有任何建议,我将不胜感激!

最佳答案

默认情况下,wro4j 使用 SmartWroModelFactory它尝试使用所有可用的 DSL 依次构建模型:xml、groovy、json。您的失败表明无法创建 xml 模型,因此它尝试将其创建为常规 DSL。由于提供的 xml 模型似乎有效,您失败的唯一原因是 xml 位置无效。

也许你可以尝试替换:

<wroFile>src/build/wro.xml</wroFile><wroFile>/src/build/wro.xml</wroFile>

关于java - Wro4j maven 插件 : Invalid wro. xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13360326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com