We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we've unpacked the zip start Eclipse Import Existing Maven Projects
and see the Error "web.xml is missing and is set to true" in pom.xml (Textedit mode) on line 7
a little Google search: the problem is solved with adding the following plugin-sequence to pom.xml
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.2</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin>
Since Eclipse is from Vaadin the recommended platform and addressbook is a project for beginners, this issue is set.
Eclipse Java EE IDE for Web Developers Version: Mars Release (4.5.0) Buld id: 20150621-1200
The text was updated successfully, but these errors were encountered:
Hi , I have the same issues but i resolve this problem by adding maven war plugin in my file POM.xml because i use a maven project
Sorry, something went wrong.
No branches or pull requests
we've unpacked the zip
start Eclipse
Import Existing Maven Projects
and see the Error
"web.xml is missing and is set to true"
in pom.xml (Textedit mode) on line 7
a little Google search:
the problem is solved with adding the following plugin-sequence to pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
Since Eclipse is from Vaadin the recommended platform and addressbook is a project for beginners, this issue is set.
Eclipse Java EE IDE for Web Developers
Version: Mars Release (4.5.0)
Buld id: 20150621-1200
The text was updated successfully, but these errors were encountered: