ant 打 jar 包添加 manifest.mf 文件
程序员文章站
2022-12-15 17:56:37
经查询 ant 有 `` 任务可以创建 manifest文件(https://ant.apache.org/manual/Tasks/manifest.html) 但尝试在 形式来更新 manifest 文件发现打出的jar包里面的 manifest 是新建的,并非指定的文件。 经查询, 任务,再建 ......
经查询 ant 有 <manifest>
任务可以创建 manifest文件(https://ant.apache.org/manual/tasks/manifest.html)
但尝试在 <jar>
任务中使用 manifest 任务 通过指定 <manifest file="manifest.mf" mode="update">
形式来更新 manifest 文件发现打出的jar包里面的 manifest 是新建的,并非指定的文件。
经查询,<jar>
任务中的 manifest manifest只能新建,若要修改在打到jar包里,得单独先使用 <manifest>
任务,再建jar任务并指定 manifest 文件()
<manifest file="manifest.mf" mode="update"> <attribute name="built-by" value="${user.name}"/> ... </manifest> ... <jar jarfile="${dist}/xxx.jar" basedir="${classes}" manifest="${basedir}/xxx/manifest.mf" />
上一篇: 真他妈的帅
推荐阅读
-
spring boot 打jar包,获取resource路径下的文件
-
ant 打 jar 包添加 manifest.mf 文件
-
ant 打 jar 包添加 manifest.mf 文件
-
Spring Boot打jar包后配置文件的外部优化配置方法
-
springboot 打jar 包部署时 读取外部配置文件
-
springboot 打jar 包部署时 读取外部配置文件
-
maven项目打jar包后获取resources下文件的代码报错:FileNotFoundException:no such file or directory
-
用Ant打Jar包--在Manifest中引用Classpath
-
【解决方案】springboot 打jar包后启动,resource下配置文件找不到
-
Springboot打jar包无法读取resource下文件