Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
Expand Down Expand Up @@ -1098,15 +1097,18 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.13</version>
</plugin>

<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
Expand All @@ -1122,16 +1124,24 @@
</excludes> <includes> <include>**/itest/**</include> </includes> </configuration>
</execution> </executions> -->
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
Expand All @@ -1146,7 +1156,6 @@
</configuration>
</plugin>


<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
Expand Down
28 changes: 21 additions & 7 deletions zeppelin-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.23</version>
<executions>

<execution>
<id>install node and npm</id>
<goals>
Expand All @@ -90,18 +91,13 @@
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>

<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>--allow-root install</arguments>
</configuration>
Expand All @@ -112,15 +108,33 @@
<goals>
<goal>grunt</goal>
</goals>
<phase>generate-resources</phase>

<configuration>
<!-- TODO(anthonycorbacho): remove force once all JSHint are fixed! -->
<arguments>--no-color --force</arguments>
</configuration>
</execution>

</executions>
</plugin>

<!--
Disabling test report generation as it forks the lifecycle
and results in https://issues.apache.org/jira/browse/ZEPPELIN-69

There is no better way to do it, as per
http://jira.codehaus.org/browse/MCOBERTURA-154
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<executions>
<execution>
<id>cobertura</id>
<phase>none</phase>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down