文件夹打jar包
不是maven项目的话,一个文件夹想打成jar包,需要先进入到文件夹内部
执行命令
jar cvfm plate-generate-1.0.11.jar META-INF/MANIFEST.MF 后面跟文件夹名 文件名等
比如
命令
jar cvfm plate-generate-1.0.11.jar META-INF/MANIFEST.MF api/ cesi/ Class50/ cn/ com/ cpcns/ javax/ lombok/ test/ xbrlJsonConfig/ META-INF/ AUTHORS changelog.txt latestchanges.html LICENSE LocationOfInvoice.properties log4j.properties module-info.class NatureOfInvoiceLine.properties release-timestamp.txt SpecialInvoiceType.properties VoucherType.properties
引入本地jar包
在pom.xml中
<dependency>
<groupId>com.alipay.mychain</groupId>
<artifactId>gov-sdk</artifactId>
<version>2.0.0.20220708</version>
<scope>system</scope>
<systemPath>{basedir}/lib/gov-sdk-2.0.0.20220708-jar-with-dependencies.jar</systemPath>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>plate-extracte</artifactId>
<version>1.0.8</version>
<scope>system</scope>
<systemPath>{project.basedir}/lib/plate-generate-1.0.11-jar-with-dependencies.jar</systemPath>
</dependency>
在src同级目录加一个lib目录,里面放需要引入的jar包