Skip to content

Commit 508705f

Browse files
author
Rafal Wojdyla
committed
Remove duplicates
1 parent 49cf0eb commit 508705f

File tree

3 files changed

+9
-32
lines changed

3 files changed

+9
-32
lines changed

flink/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -313,13 +313,6 @@
313313
<includeScope>runtime</includeScope>
314314
</configuration>
315315
</execution>
316-
</executions>
317-
</plugin>
318-
319-
<plugin>
320-
<groupId>org.apache.maven.plugins</groupId>
321-
<artifactId>maven-dependency-plugin</artifactId>
322-
<executions>
323316
<execution>
324317
<id>copy-artifact</id>
325318
<phase>package</phase>

spark/pom.xml

Lines changed: 9 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,9 @@
320320
<forkCount>1</forkCount>
321321
<reuseForks>false</reuseForks>
322322
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
323+
<excludes>
324+
<exclude>**/SparkRInterpreterTest.java</exclude>
325+
</excludes>
323326
</configuration>
324327
</plugin>
325328

@@ -389,6 +392,12 @@
389392
<groupId>org.scala-tools</groupId>
390393
<artifactId>maven-scala-plugin</artifactId>
391394
<version>2.15.2</version>
395+
<configuration>
396+
<excludes>
397+
<exclude>**/ZeppelinR.scala</exclude>
398+
<exclude>**/SparkRBackend.scala</exclude>
399+
</excludes>
400+
</configuration>
392401
<executions>
393402
<execution>
394403
<id>compile</id>
@@ -427,25 +436,6 @@
427436
</testExcludes>
428437
</configuration>
429438
</plugin>
430-
<plugin>
431-
<groupId>org.scala-tools</groupId>
432-
<artifactId>maven-scala-plugin</artifactId>
433-
<configuration>
434-
<excludes>
435-
<exclude>**/ZeppelinR.scala</exclude>
436-
<exclude>**/SparkRBackend.scala</exclude>
437-
</excludes>
438-
</configuration>
439-
</plugin>
440-
<plugin>
441-
<groupId>org.apache.maven.plugins</groupId>
442-
<artifactId>maven-surefire-plugin</artifactId>
443-
<configuration>
444-
<excludes>
445-
<exclude>**/SparkRInterpreterTest.java</exclude>
446-
</excludes>
447-
</configuration>
448-
</plugin>
449439
</plugins>
450440
</build>
451441

zeppelin-zengine/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,6 @@
168168
<version>5.3.1</version>
169169
</dependency>
170170

171-
<dependency>
172-
<groupId>junit</groupId>
173-
<artifactId>junit</artifactId>
174-
<scope>test</scope>
175-
</dependency>
176-
177171
<dependency>
178172
<groupId>org.reflections</groupId>
179173
<artifactId>reflections</artifactId>

0 commit comments

Comments
 (0)