如何使STS或Maven在项目目录中停止生成JAR?

问题描述

我在pom.xml中有关于// create your collector const collector = message.createReactionCollector(filter,{ dispose: true }) // event emitts when the reaction had one user removed collector.on('remove',(reaction,user) => { console.log(`${user.tag} removed the reaction ${reaction.emoji.name}`); });

代码
<build></build>

每次我运行方式-> Spring Boot应用程序时,我都会在项目目录中得到一些jar文件。如何不让STS或Maven生成jar文件

我无法忽略它。

enter image description here

解决方法

您的启动配置中可能选中了生成临时JAR以避免生成类路径长度问题的选项-在Classpath选项卡上的启动配置中。

取决于类路径上的JAR文件的数量,启动应用程序的命令可能会变得非常长,并且可能会因Windows上命令行长度的限制而引起麻烦(正在执行以运行您的应用程序) )。要解决此限制,IDE会生成一个临时JAR并从那里运行应用程序。但是您可以在启动配置中将其禁用。