This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 21138df [ZEPPELIN-4646]. zeppelin-server doesn't need scala 21138df is described below commit 21138dfd15ac0cddf422478b12152d31df913a38 Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Wed Feb 26 21:51:06 2020 +0800 [ZEPPELIN-4646]. zeppelin-server doesn't need scala ### What is this PR for? Trivial change which just remove scala dependency from zeppelin-server because it doesn't need these. ### What type of PR is it? [ Improvement ] ### Todos * [ ] - Task ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-4646 ### How should this be tested? * CI pass ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Jeff Zhang <zjf...@apache.org> Closes #3664 from zjffdu/ZEPPELIN-4646 and squashes the following commits: 479066784 [Jeff Zhang] [ZEPPELIN-4646]. zeppelin-server doesn't need scala --- zeppelin-server/pom.xml | 108 ------------------------------------------------ 1 file changed, 108 deletions(-) diff --git a/zeppelin-server/pom.xml b/zeppelin-server/pom.xml index 520f061..783ca17 100644 --- a/zeppelin-server/pom.xml +++ b/zeppelin-server/pom.xml @@ -51,38 +51,8 @@ <!--plugin library versions--> <plugin.failsafe.version>2.16</plugin.failsafe.version> - <plugin.scala.version>2.15.2</plugin.scala.version> - <plugin.scalatest.version>1.0</plugin.scalatest.version> </properties> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-library</artifactId> - <version>${scala.version}</version> - </dependency> - - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-compiler</artifactId> - <version>${scala.version}</version> - </dependency> - - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-reflect</artifactId> - <version>${scala.version}</version> - </dependency> - - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scalap</artifactId> - <version>${scala.version}</version> - </dependency> - </dependencies> - </dependencyManagement> - <dependencies> <dependency> @@ -268,24 +238,6 @@ <version>${quartz.scheduler.version}</version> </dependency> - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-library</artifactId> - <version>${scala.version}</version> - </dependency> - - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-compiler</artifactId> - <version>${scala.version}</version> - </dependency> - - <dependency> - <groupId>org.scala-lang</groupId> - <artifactId>scala-reflect</artifactId> - <version>${scala.version}</version> - </dependency> - <!--test libraries--> <dependency> <groupId>junit</groupId> @@ -300,19 +252,6 @@ </dependency> <dependency> - <groupId>org.scalatest</groupId> - <artifactId>scalatest_${scala.binary.version}</artifactId> - <version>${scalatest.version}</version> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>org.scala-lang.modules</groupId> - <artifactId>scala-xml_${scala.binary.version}</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.java.version}</version> @@ -423,41 +362,6 @@ </configuration> </plugin> - - <plugin> - <groupId>org.scala-tools</groupId> - <artifactId>maven-scala-plugin</artifactId> - <version>${plugin.scala.version}</version> - <executions> - <execution> - <goals> - <goal>testCompile</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <groupId>org.scalatest</groupId> - <artifactId>scalatest-maven-plugin</artifactId> - <version>${plugin.scalatest.version}</version> - <configuration> - <stderr/> - <systemProperties> - <spark.testing>1</spark.testing> - </systemProperties> - </configuration> - <executions> - <execution> - <id>test</id> - <phase>integration-test</phase> - <goals> - <goal>test</goal> - </goals> - </execution> - </executions> - </plugin> - <!-- publish test jar as well so that zeppelin-interpreter-integration can use it --> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -481,18 +385,6 @@ <profiles> <profile> - <id>scala-2.11</id> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.scala-lang.modules</groupId> - <artifactId>scala-xml_${scala.binary.version}</artifactId> - <version>1.0.2</version> - </dependency> - </dependencies> - </dependencyManagement> - </profile> - <profile> <id>using-source-tree</id> <activation> <activeByDefault>true</activeByDefault>