Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

1.3K
Views
cvc-elt.1.a: No se puede encontrar la declaración del elemento 'proyecto'

error: cvc-elt.1.a: No se puede encontrar la declaración del elemento 'proyecto'

Recibo este error constantemente. Cada vez que creo un proyecto usando maven, comienza a mostrar este error. Incluso mencioné el 'maven-war-plugin' en la etiqueta del complemento y luego actualicé y actualicé el proyecto también.

 <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.myfirstmvcapp</groupId> <artifactId>helloworldabc</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>helloworldabc Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> <finalName>helloworldabc</finalName> </build> </project>
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Encontré la solución a este problema. Gracias a @M.Deinum, quien comentó la solución debajo de la pregunta.

Todo lo que hice fue agregar https al enlace en la etiqueta, en lugar de http.

aquí está el código anterior:

 <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.myfirstmvcapp</groupId> <artifactId>helloworldabc</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>helloworldabc Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> <finalName>helloworldabc</finalName> </build> </project>

Aquí está el último código, todo lo que se necesita es agregar https en lugar de http al enlace xsd en el último enlace de la etiqueta del proyecto.

 <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 https://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.myfirstmvcapp</groupId> <artifactId>helloworldabc</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>helloworldabc Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> <finalName>helloworldabc</finalName> </build> </project>
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!