我有存储在 zip 文件中的符号链接。
使用 Mac OS 系统解压缩该文件时,会保留符号链接(也就是说,它们是符号链接,因此也是如此)。
但是,当使用 maven(特别是unpack-dependencies mojo)解压缩它们时,它们会显示为简单文件。
那么,是否有保留该标志的 Maven 插件?
我有存储在 zip 文件中的符号链接。
使用 Mac OS 系统解压缩该文件时,会保留符号链接(也就是说,它们是符号链接,因此也是如此)。
但是,当使用 maven(特别是unpack-dependencies mojo)解压缩它们时,它们会显示为简单文件。
那么,是否有保留该标志的 Maven 插件?
我建议尝试使用truezip-maven-plugin。
符号链接并非在所有操作系统上都实现。事实上,在查看了javadocs之后,我认为 SDK 根本不支持这种 zip 条目——据我所知,它只是文件和目录。由于这个原因,我也不会说这是依赖插件的限制。
根据其他答案,似乎很少有纯 Java 库允许解压缩符号链接。
在这样的解决方案中,要拥有一个纯粹的多平台构建,不要简单地为每个操作系统创建一个模块,因为这会导致经典的模块军备竞赛,更实际地说,它不适合这个模块生命周期。
因此,我使用了经典的 maven 脚本解决方案:GMaven!
这导致了这个不太漂亮的剧本
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<id>unzip native code using Groovy</id>
<phase>prepare-package</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<providerSelection>${gmaven.provider.version}</providerSelection>
<source>
<![CDATA[
def ant = new AntBuilder()
def FOLDERS_TO_EXPLORE = [] /* put here the list of folders in which zip files will be recursively searched */
def unzip(File file) {
def RUN_ON_WINDOWS = System.getProperty("os.name").toLowerCase().indexOf("win")>=0
if(RUN_ON_WINDOWS) {
log.debug "unzipping windows style"
ant.unzip( src: file, dest:file.parentFile, overwrite:"true")
} else {
def result = ant.exec(outputproperty:"text",
errorproperty: "error",
resultproperty: "exitValue",
dir: file.parent,
failonerror: true,
executable: "unzip") {
arg(value:file.name)
}
if(Integer.parseInt(ant.project.properties.exitValue)!=0) {
log.error "unable to unzip "+file.name+" exit value is "+ant.project.properties.exitValue
log.error "=========================================================\noutput\n=========================================================\n"+ant.project.properties.text
log.error "=========================================================\nerror\n=========================================================\n"+ant.project.properties.error
fail("unable to unzip "+file)
} else {
log.info "unzipped "+file.name
}
}
file.delete()
}
def unzipContentOf(File file) {
file.eachFileRecurse {
if(it.name.toLowerCase().endsWith("zip")) {
unzip(it)
}
}
}
FOLDERS_TO_EXPLORE.each { unzipContentOf(new File(it)) }
]]>