2
I am new to Javaweb programming and when installing the eclipse and importing my project created by Maven, accuses the error below:
No Marketplace Entries found to Handle Maven-antrun-plugin:1.8:run in Eclipse. Please see Help for more information.
What to do to resolve this issue?
This is the pom.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.projetojee</groupId>
<artifactId>programarjavaweb</artifactId>
<version>1</version>
<packaging>jar</packaging>
<name>React.js Blank Project (from https://github.com/making/maven-reactjs-blank)</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>gulp</id>
<phase>generate-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo message="Gulp!" />
<exec executable="gulp">
<arg value="build" />
</exec>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes/META-INF/resources</outputDirectory>
<resources>
<resource>
<directory>dest</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Are you importing as a Maven project or as an eclipse project? What version of the eclipse? If possible, include the
pom.xml
of the configuration of this plugin that presented error.– Bruno César
La la, the eclipse is the newest version 3.3JavaEE @Brunocésar
– Renan Rodrigues
Okay, I already include an answer for you
– Bruno César
The project did not include the two most important parts of the Maven.
– Renan Rodrigues
Quiet, only with this I can simulate here and I already include a "solution" for you.
– Bruno César