Skip to content

Commit

Permalink
Embed ui build & packaging into core's build (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradithya authored and feast-ci-bot committed Jan 26, 2019
1 parent 8afabdc commit f6d0c79
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,45 @@
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>install node and yarn</id>
<goals>
<goal>install-node-and-yarn</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>yarn install</id>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>build</id>
<goals>
<goal>yarn</goal>
</goals>
<phase>compile</phase>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
</executions>
<configuration>
<nodeVersion>v9.9.0</nodeVersion>
<yarnVersion>v1.13.0</yarnVersion>
<workingDirectory>../ui</workingDirectory>
<installDirectory>target</installDirectory>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit f6d0c79

Please sign in to comment.