maven-jar-plugin中的自定义类路径条目的索引

时间:2019-04-05 14:24:23

标签: java maven maven-jar-plugin

使用自定义类路径条目时,我得到了错误的 INDEX.LIST 文件。是否可以通过某种方式手动添加索引条目?

httpModule.request({
        url: "http://192.168.XXX.XXX:XXXX/func",
        method: "POST",
        headers: { "Content-Type": "application/json" },
        content: data
      }).then((response) => {
        const result = response.content.toJSON();
      }, (e) => {
        console.error(e);
      });

目前,只有在类路径中没有任何自定义条目的情况下,<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <archive> <index>true</index> ... <manifestEntries> ... <Class-Path>other1.jar other2.jar</Class-Path> ... </manifestEntries> </archive> </configuration> </plugin> 选项才能正常工作。

0 个答案:

没有答案