Skip to content

Commit

Permalink
ignite-indexing: shade h2
Browse files Browse the repository at this point in the history
  • Loading branch information
magicprinc committed Apr 29, 2024
1 parent b964439 commit a185f1e
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion modules/indexing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,43 @@
<skip>false</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>com.h2database:h2:${h2.version}</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>com.h2database:h2</artifact>
<includes>
<include>org.h2</include>
<include>META-INF/**</include>
</includes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.h2</pattern>
<shadedPattern>org.apache.ignite.h2</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>
</project>
</project>

0 comments on commit a185f1e

Please sign in to comment.