Skip to content

Commit

Permalink
use copy-resources to reduce redundant resources
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoliversun committed Oct 14, 2024
1 parent d532314 commit bb3406d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 117 deletions.
18 changes: 9 additions & 9 deletions gluten-delta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,21 +167,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-sources</id>
<id>copy-resources</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
<goal>copy-resources</goal>
</goals>
<configuration>
<sources>
<source>src/main/delta-${delta.binary.version}</source>
</sources>
<outputDirectory>src/main/scala/org/apache/gluten/execution</outputDirectory>
<resources>
<resource>
<directory>src/main/delta-${delta.binary.version}/org/apache/gluten/execution</directory>
</resource>
</resources>
<overwrite>true</overwrite>
</configuration>
</execution>
</executions>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit bb3406d

Please sign in to comment.