Apache Maven是一个构建自动化和项目管理工具,主要用于Java项目。此标记用于与特定Maven版本无关的问题。使用gradle标签代替与Gradle相关的问题。
没有绑定 org.apache.maven.shared.filtering.MavenResourcesFiltering 的实现
我正在尝试执行 mvn clean install,但我遇到了这个错误这是我的 pom.xml 我无法运行我的 Spring Boot 项目。问题是什么? 我正在尝试做mvn clean install,但我陷入了这个错误这是我的pom.xml 我无法运行我的 Spring Boot 项目。有什么问题吗? <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.src</groupId> <artifactId>riot</artifactId> <version>0.0.1-SNAPSHOT</version> <name>riot</name> <description>riot</description> <properties> <java.version>19</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>28.1-jre</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-core</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.30</version> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>4.0.3</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.2.11</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <version>2.2.11</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.2.11</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-api</artifactId> <version>0.11.2</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-impl</artifactId> <version>0.11.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>6.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt-jackson</artifactId> <version>0.11.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>org.springframework.ldap</groupId> <artifactId>spring-ldap-core</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project> 我在网上找不到这个错误 我收到此错误 我在执行我的 spring-boot 应用程序时遇到同样的错误。 我已经尝试清除 Maven 存储库并使用 -U 开关强制更新,但问题仍然存在。此错误会阻止任何 Maven 构建成功完成。有谁知道可能导致此问题的原因或如何解决它?以下是我尝试过的一些环境设置和操作: -Java JDK 版本之间的切换 - 使用不同的Maven版本 - 清除.m2存储库 -使用 -X 运行 Maven 以进行调试输出 - 防火墙或防病毒软件中没有任何阻止 任何人的任何建议或指导将不胜感激!
在springboot maven项目上更改java jdk
我之前使用的是java jdk 17,我用jdk 17构建了我所有的springboots maven项目,但现在我已经在我的笔记本电脑上安装了java jdk 23,然后我尝试运行我的springboot maven项目......
我在 Spring 项目中使用 Lombok,因为我使用 IDE Visual Studio Code 和 Java 插件扩展包,所以会自动创建必要的生成源。这在里面起作用......
如何使用显式 Maven 目标运行 Cucumber 测试?
我有一个应用程序包含 Cucumber 和 JBehave 测试,我希望每次都能够选择运行其中一个,我可以通过明确的 Maven 目标使用 JBehave 来做到这一点,但问题是
java.net.URISyntaxException:索引 7 处的权限中存在非法字符
在 intelliJ 中使用 Maven 构建时出现以下错误。一直想通过多种方式来解决。尝试删除 .m2 存储库,更改 intelliJ 中的配置,包括 set 中的配置...
Debian 12 中的 Spring Boot Java 11 和 tomcat10
我已将 Java 11 spring boot war 从 Debian 11 切换到 Debian 12 上的 tomcat10,并希望使用 pom.xml 文件中的现有定义使用 maven 进行构建。 我不想使用: 爪哇17 雅加达
Maven:从 JAR 中排除“META-INF/maven”文件夹
我使用 Maven 构建 JAR。当我检查 JAR 时,我在 META-INF 文件夹中看到一个 maven 文件夹。我希望将其从构建中排除。我当前在 pom.xml 中的构建代码如下所示: <
我在 IntelliJ 中编译 Maven 项目时遇到问题。 如果我从命令行运行 mvn clean install = SUCCESS 如果我单击 IntellJ 中的“重新导入所有 Maven 项目”图标 = 成功 如果我点击...
如何将每个工件从 Nexus 传输到 AWS CodeArtifact?
根据公司规定,我应该将每个工件从 Nexus 迁移到另一个解决方案,最好是 AWS CodeArtifact。 我们也有托管、代理和组类型的存储库,主要是 Maven 和 nuge...
VS Code 中的 MapStruct 错误:“没有为 Mapper 创建实现”
升级到 VS Code 1.93.1(2024 年 10 月)后,VS Code 开始无法为我的 Java 应用程序生成 MapStruct 映射器,并出现以下错误: 构建工作区时发生错误。德...
maven-assemble-plugin 调试日志在哪里?
我在尝试编译我的项目时遇到错误。看来maven assembly插件配置有问题。 07:30:58:298 [错误] org.apache.maven.cli.MavenCli - 无法执行...
在Windows上使用exec-maven-plugin执行shell脚本
我有一个 pom,它使用 exec-maven-plugin 来执行带有三个参数的 shell 脚本。 运行 mvn clean install -X -e 时,它在该步骤失败并出现错误, [调试] 工具链是...
从 kotlin 1.8 升级到 kotlin 2.0.20 后,在 1 台机器上构建的 Maven 永远挂起在以下阶段: [DEBUG] 类路径更改从 Gradle 任务传递的信息:ClasspathSnapshotDisabled [信息...
我的笔记本电脑有 Windows 和 ubuntu 双启动。我想使用 ubuntu 中的 windows maven 项目。我已经在 ubuntu apt 存储库中安装了 maven。但是当我检查ubuntu的.m2文件夹时,
我目前正在开发一个微服务应用程序,到目前为止我一直在使用Windows 10。但是,最近我已经将我的设置更改为mac。安装Java + Maven并尝试编译后...
我们尝试在Wildfly 13中部署pwm项目,我们对服务器WAR实现感兴趣。该项目已在 Apache Tomcat 8.0.33 中开发和测试。我们已经成功跑到汤姆身上了...
我们尝试在Wildfly 13中部署pwm项目,我们对服务器WAR实现感兴趣。该项目已在 Apache Tomcat 8.0.33 中开发和测试。我们已经成功跑到汤姆身上了...
如何在 Eclipse 中创建 Maven 项目并将其转换为动态 Web 项目?
使用 Maven 创建 Web 项目: mvn 原型:生成 -DgroupId=com.Trial -DartifactId=message -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false 将项目转换为
如何在 Eclipse 中将 Maven 项目转换为动态 Web 项目?
使用 Maven 创建 Web 项目: mvn 原型:生成 -DgroupId=com.Trial -DartifactId=message -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false 将项目转换为
将 GCP Secret Manager SDK 添加到 Maven 会导致“{Type} 无法访问”错误
代码链接:https://github.com/phillipshaong/java-gcp-secrets-manager-test/tree/main 我想将 Google Cloud Platform (GCP) Secrets Manager 客户端添加到我的 Java 应用程序 (https://cloud.goo...