I had setup a proxy repository for bower (http://bower.herokuapp.com)
as per Nexus Document. After running bower install
command, nothing was shown in the components section.
All the files were downloaded to bower_components
of my local directory. But it is not available in the nexus components.
It always try to download libraries directly from internet instead of caching it.
My .bowerrc
configuration,
{
"directory": "bower_components",
"registry": {
"search": [
"http://localhost:8081/repository/repo-all"
],
"register": "http://usr:pas@localhost:8081/repository/repo-internal"
},
"resolvers": [
"bower-nexus3-resolver"
],
"nexus": {
"username": "usr",
"password": "pas"
}
}