mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Clean zeppelin-web/pom.xml
This commit is contained in:
parent
4f8ecc9318
commit
dee3723839
1 changed files with 12 additions and 7 deletions
|
|
@ -37,6 +37,15 @@
|
|||
<maven>3.1.0</maven>
|
||||
</prerequisites>
|
||||
|
||||
<properties>
|
||||
<node.version>v6.9.1</node.version>
|
||||
<npm.version>3.10.8</npm.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<!--plugin versions-->
|
||||
<plugin.frontned.version>1.3</plugin.frontned.version>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
|
@ -90,7 +99,7 @@
|
|||
<plugin>
|
||||
<groupId>com.github.eirslett</groupId>
|
||||
<artifactId>frontend-maven-plugin</artifactId>
|
||||
<version>1.3</version>
|
||||
<version>${plugin.frontned.version}</version>
|
||||
<executions>
|
||||
|
||||
<execution>
|
||||
|
|
@ -99,8 +108,8 @@
|
|||
<goal>install-node-and-npm</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<nodeVersion>v6.9.1</nodeVersion>
|
||||
<npmVersion>3.10.8</npmVersion>
|
||||
<nodeVersion>${node.version}</nodeVersion>
|
||||
<npmVersion>${npm.version}</npmVersion>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
|
|
@ -159,7 +168,6 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
|
@ -175,8 +183,5 @@
|
|||
</plugins>
|
||||
</build>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
|
|
|
|||
Loading…
Reference in a new issue