spring-attic / tut-react-and-spring-data-rest

React.js and Spring Data REST :: A tutorial based on the 5-part blog series by Greg Turnquist
https://spring.io/guides/tutorials/react-and-spring-data-rest
883 stars 1.58k forks source link

Cannot resolve plugin com.github.eirslett:frontend-maven-plugin:<unknown> #137

Open Elm1r999 opened 2 years ago

Elm1r999 commented 2 years ago
com.github.eirslett frontend-maven-plugin

I am not able to configure the React part. The development environment I used: Intellij IDEA 2021.3 (Ultimate Edition).

theCoder2504 commented 2 years ago

I had the same issue. You can solve it buy adding the latest version of the plugin which can be found under: https://mvnrepository.com/artifact/com.github.eirslett/frontend-maven-plugin Just add a version tag: LATEST_VERSION and replace the uppercase letters with the number.

ArkFreestyle commented 1 year ago

Just to make future readers' life easier:

<dependency>
    <groupId>com.github.eirslett</groupId>
    <artifactId>frontend-maven-plugin</artifactId>
    <version>1.12.1</version>
</dependency>