"build-helper-maven-plugin" not found?

5.5k Views Asked by At

In my POM file I include:

<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>add-source</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>target/generated-sources/avro</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

Always show these in the POM file in red colour

build-helper-maven-plugin
3.0.0

I tried a lot of things, for example, I updated the MAVEN by using the MAVEN settings on the right side of the Intellij IDEA, but it didn't work. always when I make Compile the following message appears:

Could not transfer artifact org.codehaus.mojo:build-helper-maven-plugin:pom:3.0.0 from/to central (https://repo.maven.apache.org/maven2): /home/ameerb/.m2/repository/org/codehaus/mojo/build-helper-maven-plugin/3.0.0/build-helper-maven-plugin-3.0.0.pom.part.lock (No such file or directory)

Can you please show me what is the cause and what is the solution?

0

There are 0 best solutions below