angularjs - How to organize build with foundation for apps and Maven? -
i have project has :
- java server war deployed on tomcat. includes java code of entities, dao, service , api.
- js client built foundation apps. includes angular js, bower, gulp , sass.
i'm trying organize build process of project have difficulties implement it.
as said in post how organize full build pipeline gulp, maven , jenkins, tried use frontend-maven-plugin without success.
i have following error :
` [error] [error] events.js:141 [error] throw er; // unhandled 'error' event [error] ^ [error] error: client\assets\scss\_settings.scss [error] error: file import not found or unreadable: helpers/functions [error] parent style sheet: c:/dev/code/porteo/fr.porteo.parent/fr.porteo.jersey/porteo_fa/client/assets/scss/_settings.scss [error] on line 32 of client/assets/scss/_settings.scss [error] >> @import "helpers/functions"; [error] ^` it seem there problem _settings.css file. don't recognize tag @import. problem come from? it's surely maven , frontent-maven-plugin how fix it?
here pom.xml plugin dependencies , executions (only npm start necessary run foundation project) :
<plugin> <groupid>com.github.eirslett</groupid> <artifactid>frontend-maven-plugin</artifactid> <!-- nb! set <version> latest released version of frontend-maven-plugin, in readme.md --> <version>0.0.29</version> <configuration> <workingdirectory>my_foundation_project</workingdirectory> </configuration> <executions> <execution> <id>install node , npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeversion>v5.3.0</nodeversion> <npmversion>3.3.12</npmversion> </configuration> </execution> <execution> <id>npm start</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>start</arguments> </configuration> </execution> </executions> </plugin> so, have solutions or better way implement these 2 applications?
Comments
Post a Comment