如何让maven在编译时只考虑一组重复文件中的一个?

时间:2016-12-21 18:06:32

标签: java maven swagger-codegen

我使用Swagger(OpenAPI)来设计和实现API。我已经有一个功能性的swagger.yml和一个Maven项目,用于构建基于它的文档,服务器和客户端。

swagger-codegen-maven-plugin/target/generated-sources/swagger目录中生成抽象类和实现类。我应该用自己的方法覆盖实现类,所以我将实现类的初始版本移到了/src/main/java目录。

移动类之后,我的构建正确完成,但如果我执行了mvn clean compile,我的构建中出现重复的类会出错。

每次进行干净构建时,swagger-codegen-maven-plugin都会重新生成所有代码,包括我重写的类。

swagger-codegen-maven-plugin创建一个.swagger-codegen-ignore我应该列出我不希望它生成的文件,但它似乎不起作用(我和#39; m使用插件的2.2.2-SNAPSHOT版本。

#.swagger-codegen-ignore
OrcamentoApiServiceImpl.java
PropostaApiServiceImpl.java

作为一种解决方法,我试图让maven-compiler-plugin排除生成的文件版本,这样只有我修改过的实现才会用于编译,但它也无法正常工作。以下是我使用的配置:

<build> 
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.6.0</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                    <configuration>
                        <excludes>
                            <exclude>OrcamentoApiServiceImpl.java</exclude>
                            <exclude>PropostaApiServiceImpl.java</exclude>
                        </excludes>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

如何让maven-compiler-plugin忽略swagger Maven插件生成的文件版本并仅考虑我的?

或者:您能否提出替代解决方案,或者如何让swagger-codegen-maven-plugin考虑.swagger-codegen-ignore

1 个答案:

答案 0 :(得分:0)

我遇到了完全相同的问题,我设法让swagger忽略文件工作。根据我从他们的文档中理解(通过适当的示例可能更清楚),必须在生成的代码的根目录中设置忽略文件。所以我在我的pom.xml中添加了这个插件,以便从它的实际位置复制它:

  <plugin>
    <artifactId>maven-resources-plugin</artifactId>
    <version>3.0.2</version>
    <executions>
      <execution>
        <id>copy-resources</id>
        <phase>validate</phase>
        <goals>
          <goal>copy-resources</goal>
        </goals>
        <configuration>
          <outputDirectory>${basedir}/target/generated-sources/swagger</outputDirectory>
          <resources>
            <resource>
              <directory>${basedir}/src/main/resources</directory>
              <includes>
                <include>.swagger-codegen-ignore</include>
              </includes>
            </resource>
          </resources>
        </configuration>
      </execution>
    </executions>
  </plugin>