I started programming in Java using Eclipse a few years ago, but then I had the opportunity to work with Intellij and I'm happier with it, because it's more performant, even though it has less plugins.
My problem is that now I'm working with wro4j
in a SpringBoot application. When I run the spring boot app from the IDE, the resources managed by wro4j
do not seem to be downloaded, so I guess this is because I need to enable something for Intellij to work with wro4j
, since, I know, there's a plugin for Eclipse to work with wro4j
. Is there such a thing for Intellij?
Currently, to make my project work as expected, i.e. resources are downloaded, etc, I need to install and run it from the terminal with the following commands:
mvn clean install
mvn spring-boot:run
Also my wro.xml
file looks like this:
<groups xmlns="http://www.isdc.ro/wro">
<group name="angular-bootstrap">
<css>webjar:bootstrap/3.3.7-1/less/bootstrap.less</css>
<css>file:@project.basedir@/src/main/wro/main.less</css>
<js>webjar:jquery/2.2.4/jquery.min.js</js>
<js>webjar:angularjs/1.4.9/angular.min.js</js>
<js>webjar:angularjs/1.4.9/angular-route.min.js</js>
<js>webjar:angularjs/1.4.9/angular-cookies.min.js</js>
</group>
</groups>
and the http://www.isdc.ro/wro
is colored red with the warning:
URI is not registered
but this is because, I think, I've not wro4j
as a dependency but as a plugin. In fact, if I also add it as a dependency, the warning disappears, but I still have the problem that dependencies are not downloaded.