JAR will be empty - no content was marked for inclusion!

这篇具有很好参考价值的文章主要介绍了JAR will be empty - no content was marked for inclusion!。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

现象

        在对自建pom依赖组件打包时,出现JAR will be empty - no content was marked for inclusion!错误。

JAR will be empty - no content was marked for inclusion!,Spring,jar,java,maven

方案

       在pom中怎么加packaging标签内容为pom,标识只打包pom文件

<?xml version="1.0" encoding="UTF-8"?>
...
    <groupId>com.lizz.ta</groupId>
    <artifactId>ta-parent-starter</artifactId>
    <version>1.0</version>
    <name>ta-parent-starter</name>
    <packaging>pom</packaging>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

...

 完成JAR will be empty - no content was marked for inclusion!,Spring,jar,java,maven文章来源地址https://www.toymoban.com/news/detail-701790.html

到了这里,关于JAR will be empty - no content was marked for inclusion!的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • maven报The POM for com.**** is invalid, transitive dependencies (if any) will not be available问题解决

    spring-boot版本2.3.0 The POM for org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.0 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.0 mybatis的版本1.3.0 从git上拉下来的代码,刚开始是MyBatisC

    2024年02月15日
    浏览(46)
  • ruoyi-cloud gatewayWeb application could not be started as there was no org.springframework.boot.web

    要检查配置的Spring Boot网关应用程序类型,您可以打开 application.properties 或 application.yml 文件,并查找以下属性: type 的值将指示您配置的Web应用程序类型。它可以是以下之一: SERVLET :适用于传统的基于Servlet的Web应用程序。 REACTIVE :适用于响应式Web应用程序,使用Spring We

    2024年02月07日
    浏览(46)
  • Could not extract response: no suitable HttpMessageConverter found for content type [text/html]

    如果是使用 OpenFeign 进行远程调用的时候,报以下错误 no suitable HttpMessageConverter 可考虑修改 feign 接口,如下,使用注解 @ResponseBody、@RequestBody 在使用 RestTemplate请求调用的时候,程序报错 报错信息如下: 错误信息是未知的ContentType,这个ContentType就是第三方接口返回时候在H

    2024年02月08日
    浏览(59)
  • spring boot启动错误:Web application could not be started as there was no org.springframework.boot.web.se

    检查启动类有没有@SpringBootApplication 检查依赖项有没有

    2024年02月08日
    浏览(54)
  • No converter for [class xxx] with preset Content-Type ‘multipart/form-data’

    org.springframework.http.converter.HttpMessageNotWritableException: No converter for [class cn.guet.utils.Result] with preset Content-Type ‘multipart/form-data’ 当我将判断文件是否存在逻辑,放在writeBytes中时,当判断到文件不存在,抛出 BusinessException 异常时,后台报错。 因为此时的 response.setContentType(\\\"mult

    2024年02月15日
    浏览(64)
  • No loop matching the specified signature and casting was found for ufunc greater

    目录 报错信息 np.greater 学习 临时解决方法:np.greater去掉dtype pip install numpy==1.24 报错代码: No loop matching the specified signature and casting was found for ufunc greater 1. 函数功能:判断参数一是否大于参数二。 2. 参数介绍     arr1:第一个参数类似一个数组     arr2:第二个参数类似一个

    2024年02月01日
    浏览(60)
  • subject may not be empty | type may not be empty

    ✖ subject may not be empty [subject-empty] ✖ type may not be empty [type-empty] ✖ found 2 problems, 0 warnings ⓘ Get help: https://github.com/conventional-changelog/commitlint/#what-is-commitlint 原因是使用了规范commit信息的工具,你的提交信息不符合规范,所以被拒绝了 commit规范工具 commitlint husky 解决方式一:修

    2024年02月16日
    浏览(65)
  • log4j:WARN No appenders could be found for logger

    上面是我们运行时出现的警告信息,它并不是一个错误信息。因为log4j无法输出日志,log4j是一个日志输入软件包。 解决方法(简单粗暴): 在src下面新建file名为log4j.properties内容如下: 重新发布一下,问题就可以得到解决!

    2024年02月12日
    浏览(43)
  • 解决:No converter for [xxxx] with preset Content-Type ‘text/plain;version=0.0.4;charset=utf-8‘

    Spring Boot 2.X 错误信息如下: 例如上述错误信息,项目出现了某种异常,并且响应对象设置了响应头,如: Content-Type ‘text/plain;version=0.0.4;charset=utf-8’。 当内部抛出了异常后,项目中的全局异常处理返回了一个通用的实体对象,是JSON格式,和响应头的Content-Type不一致,导致

    2024年02月12日
    浏览(65)
  • For artifact {org.springframework.cloud:spring-cloud-starter-config:null:jar}: The version cannot be

    For artifact {org.springframework.cloud:spring-cloud-starter-config:null:jar}: The version cannot be empty. 前情:之前down的项目一个多月没有动过,前两天想打开看看突然所有的注解、n多类报红。回想了一下,唯一的操作是改了idea中关于maven的设置。                 --把maven仓库的地址改了

    2024年02月05日
    浏览(35)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包