Reputation: 4542
So I cloned the jHipster registries, but am getting the following warnings:
npm WARN [email protected] requires a peer of @angular/common@^2.0.0 but none was installed.
npm WARN [email protected] requires a peer of @angular/core@^2.0.0 but none was installed.
npm WARN [email protected] requires a peer of @angular/core@^2.0.0 but none was installed.
npm WARN [email protected] requires a peer of @angular/http@^2.0.0 but none was installed.
How do I fix this so I can build?
Upvotes: 2
Views: 190
Reputation: 1171
As it's an Angular project, after cloning the jhipster-registry project, you need to:
yarn install
(to install all dependencies) or npm install
, depending which tool you use./mvnw
Another solution:
java -Djhipster.security.authentication.jwt.secret=xxxx -jar jhipster-registry-3.0.1.war
Upvotes: 5