Я слежу за этим блогом , чтобы создать свой бэкэнд в весенней загрузке и фронтенд в Reactjs. Когда я клонировал код, он работает нормально. Но в pom. xml он показывает сообщение об ошибке, поскольку maven-antrun-plugin не найден. Почему это так? Как мне это исправить?
<plugin>
<artifactId>maven-antrun-plugin</artifactId> // error not found
<executions>
<execution>
<phase>generate-resources</phase>
<configuration>
<target>
<copy todir="${project.build.directory}/classes/static">
<fileset dir="${project.basedir}/frontend/build" />
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>