使用-f选项时,Maven重复类具有生成的源代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用-f选项时,Maven重复类具有生成的源代码相关的知识,希望对你有一定的参考价值。
我尝试使用从jaxb2-maven-plugin
生成的类来构建Maven项目。
请考虑以下最小的pom.xml:
<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>test</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<packageName>test</packageName>
<sources>
<source>src/main/resources/schema.xsd</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
以及src/main/resources/schema.xsd
中的最小模式:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" vc:maxVersion="1.1" vc:minVersion="1.0" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:string"/>
</xs:schema>
调用mvn clean compile
时,将按预期方式构建项目。但是,当我使用包含..
的路径指定文件时,会发生以下错误。当使用(相对或绝对)路径无 ..
时,一切都很好。
C:\dev\test>mvn -f ..\test\pom.xml clean compile
[...]
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project test: Compilation failure: Compilation failure:
[ERROR] /C:/dev/test/target/generated-sources/jaxb/test/ObjectFactory.java:[32,8] duplicate class: test.ObjectFactory
如何摆脱这个错误并使用mvn -f <some path containing "..">
建立我的项目?
答案
对我来说(在macOS上,当我没有“时,问题就消失了。组件在我的路径中:
以上是关于使用-f选项时,Maven重复类具有生成的源代码的主要内容,如果未能解决你的问题,请参考以下文章
用于读取应用程序类和生成 java 的 maven mojo
maven报错:Error:java: 不再支持源选项 5。请使用 6 或更高版本。