skip to Main Content

Visual Studio Code – Failed to read artifact descriptor for pom.xml in VSCode

I am trying to run a Java project in VSCode but I am getting this error: Failed to read artifact descriptor for org.springdoc:springdoc-openapi-ui:jar:1.6.4 org.eclipse.aether.resolution.ArtifactDescriptorException: Failed to read artifact descriptor for org.springdoc:springdoc-openapi-ui:jar:1.6.4 /.../ at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:43) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:63) Caused by: org.apache.maven.model.resolution.UnresolvableModelException: org.springframework.cloud:spring-cloud-netflix-dependencies:pom:3.1.0…

VIEW QUESTION

Jetty 11.0.11 – 404 on html file in srcmainwebappstatic – maven embedded fat jar

I have a file in my Netbeans 14 Jetty 11.0.11 project at srcmainwebappstaticindex.html that I want to serve to web-browsers using Jetty. Here is my pom.xml: <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>verishare</groupId> <artifactId>verdi</artifactId> <version>12-JDK17</version> <packaging>jar</packaging> <name>verdi</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>…

VIEW QUESTION
Back To Top
Search