1

我正在尝试使用 maven-remote-resources-plugin 在多模块 maven 项目中跨模块共享许多资源。不幸的是,共享的二进制资源在捆绑过程中被破坏了,大概是通过过滤。

我相信这个阶段正在发生损坏,因为从我的本地存储库中提取共享资源 jar 包含损坏的二进制文件。

有什么可以关闭 maven-remote-resources-plugin 的过滤吗?

目前我的共享资源模块中的 pom 看起来像

<build>
  <plugins>
    <plugin>
       <artifactId>maven-remote-resources-plugin</artifactId>
       <executions>
         <execution>
           <goals>
             <goal>bundle</goal>
           </goals>
         </execution>
       </executions>
       <configuration>
         <includes>
           <include>**/*</include>
         </includes>
       </configuration>
     </plugin>
  </plugins>
</build>

<dependencies>
  <dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-remote-resources-plugin</artifactId>
    <version>1.3</version>
  </dependency>
</dependencies>
4

3 回答 3

5

听起来资源在捆绑过程中被破坏了。由于资源项目只是一个 jar,它resources作为默认生命周期的一部分执行插件。尝试将此添加到资源项目的 POM。

<plugin>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.6</version>
    <executions>
      <execution>
        <id>default-resources</id>
        <configuration>
          <nonFilteredFileExtensions>
            <nonFilteredFileExtension>exe</nonFilteredFileExtension>
            <nonFilteredFileExtension>dontFilterMeEither</nonFilteredFileExtension>
          </nonFilteredFileExtensions>
          [...]
        </configuration>
      </execution>
    </executions>
  </plugin>

文档描述了默认情况下哪些二进制文件未被过滤;上面的配置将扩展名添加到列表中。

于 2012-10-02T13:44:40.550 回答
0

你试过了吗 :

<plugin>
        <artifactId>maven-remote-resources-plugin</artifactId>
        <version>1.3</version>
        <executions>
          <execution>
            <id>process-remote-resources</id>
            <goals>
              <goal>process</goal>
            </goals>
            <configuration>
              <useDefaultFilterDelimiters>false</useDefaultFilterDelimiters>
              [...]
            </configuration>
          </execution>
        </executions>
      </plugin>
于 2012-10-02T11:44:09.963 回答
0

我们为解决这个问题而采取的方法如下。
请注意,我误解了 user944849 的答案,所以我没有对其进行测试,它可能会起作用。

我们使用共享资源 pom 中的资源子句直接在本地存储库中创建了 jar。我认为这是使用 maven-resources-plugin (?)。

然后使用maven-dependency-plugin解压到一个临时目录,在resource-consumer pom的resources子句中过滤出想要的资源。

共享资源

<build>
  <resources>
    <resource>
      <directory>src/main/resources</directory>
      <filtering>false</filtering>
      <includes>
        <include>**/*</include>
      </includes>
    </resource>
  </resources>
</build>

资源消费者

<build>
  <resources>
    <resource>
      <directory>${project.build.directory}/shared-resources</directory>
      <includes>
        <include>theOnlyOneIWant.properties</include>
      </includes>
    </resource>
  </resources>
  [...]
  <plugins>
    <plugin>
      <artifactId>maven-dependency-plugin</artifactId>
      <version>2.5</version>
      <executions>
        <execution>
          <id>shared-resources</id>
          <goals>
            <goal>unpack-dependencies</goal>
          </goal>
          <phase>generate-resources</phase>
          <configuration>
            <includeGroupIds>myProjectGroup</includeGroupIds>
            <includeArtifactIds>myProjectSharedResources</includeArtifactIds>
            <outputDirectory>${project.build.directory}/shared-resources</outputDirectory>
          </configuration>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

这可能不适用于可以使用 maven-remote-resources-plugin 的所有实例,但它对我们有用并解决了二进制资源损坏的问题。

于 2012-10-04T00:40:13.570 回答