pjfanning commented on code in PR #4930: URL: https://github.com/apache/zeppelin/pull/4930#discussion_r2183126713
########## storch/pom.xml: ########## @@ -0,0 +1,203 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <properties> + <!-- 设置 Scala 版本 --> + <scala.version>3.6.4</scala.version> + <maven.compiler.source>11</maven.compiler.source> + <maven.compiler.target>11</maven.compiler.target> + <interpreter.name>storch</interpreter.name> + </properties> + <groupId>dev.storch</groupId> + <artifactId>storch-scala3-zeppelin-interpreter</artifactId> + <version>1.0</version> + +<!-- <parent>--> +<!-- <artifactId>zeppelin-interpreter-parent</artifactId>--> +<!-- <groupId>org.apache.zeppelin</groupId>--> +<!-- <version>0.12.0-SNAPSHOT</version>--> +<!-- <relativePath>../zeppelin-interpreter-parent/pom.xml</relativePath>--> +<!-- </parent>--> + + + <packaging>jar</packaging> + <name>Zeppelin: Storch-Scala3 interpreter</name> Review Comment: would it be possible to write a generic Scala interpreter into which Storch could be imported optionally - a bit how Scala CLI works. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org