This is an automated email from the ASF dual-hosted git repository.
av pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git
The following commit(s) were added to refs/heads/master by this push:
new f42ba589 IGNITE-20945 Fix scala compilation by IDEA #244
f42ba589 is described below
commit f42ba589f249f64d06bcbcbe5bbaa8d408c0974f
Author: Anton Vinogradov <[email protected]>
AuthorDate: Thu Nov 23 15:33:00 2023 +0300
IGNITE-20945 Fix scala compilation by IDEA #244
---
modules/spark-ext/pom.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/modules/spark-ext/pom.xml b/modules/spark-ext/pom.xml
index 5e261025..9fc038f5 100644
--- a/modules/spark-ext/pom.xml
+++ b/modules/spark-ext/pom.xml
@@ -65,6 +65,22 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>net.alchim31.maven</groupId>
+ <artifactId>scala-maven-plugin</artifactId>
+ <version>4.8.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <scalaVersion>${scala.library.version}</scalaVersion>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>