Skip to content

Commit

Permalink
add scala version diff in pom for trino module
Browse files Browse the repository at this point in the history
  • Loading branch information
naive-zhang committed Dec 8, 2024
1 parent 9c8b2c3 commit 8d291f5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions externals/kyuubi-trino-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,36 @@

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-scala-sources</id>
<goals>
<goal>add-source</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<sources>
<source>src/main/scala-${scala.binary.version}</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-scala-test-sources</id>
<goals>
<goal>add-test-source</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<sources>
<source>src/test/scala-${scala.binary.version}</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit 8d291f5

Please sign in to comment.