Repository: zeppelin
Updated Branches:
  refs/heads/master 246f69671 -> a75aa52b6


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a75aa52b/zeppelin-web/pom.xml
----------------------------------------------------------------------
diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml
index 227f30b..efec039 100644
--- a/zeppelin-web/pom.xml
+++ b/zeppelin-web/pom.xml
@@ -46,7 +46,6 @@
     <!--plugin versions-->
     
<plugin.frontend.nodeDownloadRoot>https://nodejs.org/dist/</plugin.frontend.nodeDownloadRoot>
     
<plugin.frontend.npmDownloadRoot>http://registry.npmjs.org/npm/-/</plugin.frontend.npmDownloadRoot>
-    
<plugin.frontend.yarnDownloadRoot>https://github.com/yarnpkg/yarn/releases/download/</plugin.frontend.yarnDownloadRoot>
   </properties>
 
   <build>
@@ -67,28 +66,25 @@
         <configuration>
           
<nodeDownloadRoot>${plugin.frontend.nodeDownloadRoot}</nodeDownloadRoot>
           <npmDownloadRoot>${plugin.frontend.npmDownloadRoot}</npmDownloadRoot>
-          
<yarnDownloadRoot>${plugin.frontend.yarnDownloadRoot}</yarnDownloadRoot>
         </configuration>
 
         <executions>
 
           <execution>
-            <id>install node and yarn</id>
+            <id>install node</id>
             <goals>
-              <goal>install-node-and-yarn</goal>
               <goal>install-node-and-npm</goal>
             </goals>
             <configuration>
               <nodeVersion>${node.version}</nodeVersion>
-              <yarnVersion>${yarn.version}</yarnVersion>
               <npmVersion>${npm.version}</npmVersion>
             </configuration>
           </execution>
 
           <execution>
-            <id>yarn install</id>
+            <id>npm install</id>
             <goals>
-              <goal>yarn</goal>
+              <goal>npm</goal>
             </goals>
             <configuration>
               <skip>${web.e2e.enabled}</skip>
@@ -97,9 +93,9 @@
           </execution>
 
           <execution>
-            <id>yarn build</id>
+            <id>npm build</id>
             <goals>
-              <goal>yarn</goal>
+              <goal>npm</goal>
             </goals>
             <configuration>
               <skip>${web.e2e.enabled}</skip>
@@ -108,9 +104,9 @@
           </execution>
 
           <execution>
-            <id>yarn test</id>
+            <id>npm test</id>
             <goals>
-              <goal>yarn</goal>
+              <goal>npm</goal>
             </goals>
             <phase>test</phase>
             <configuration>
@@ -120,9 +116,9 @@
           </execution>
 
             <execution>
-              <id>yarn e2e</id>
+              <id>npm e2e</id>
               <goals>
-                <goal>yarn</goal>
+                <goal>npm</goal>
               </goals>
               <phase>integration-test</phase>
               <configuration>

Reply via email to