сохраните zip с другим именем файла, используя maven-assembly-plugin - PullRequest
0 голосов
/ 29 августа 2018

Я хочу иметь возможность архивировать файлы в папке '$ {project.basedir} / src / main / resources / docker' в папку target / docker-files / docker-files.zip, но в настоящее время они сохраняются в ' target / project-artifactId-1.0-SNAPSHOT.zip '

Я написал следующий файл zip.xml

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>docker_files</id>
<formats>
  <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
  <fileSet>
    <directory>${project.basedir}/src/main/resources/docker</directory>
    <filtered>true</filtered>
    <outputDirectory>/docker-files-zip</outputDirectory>
  </fileSet>
</fileSets>
</assembly>

Мой pom.xml имеет следующий плагин:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <executions>
      <execution>
        <id>make-assembly</id>
        <phase>package</phase>
        <goals>
          <goal>single</goal>
        </goals>
        <configuration>
          <fileName>docker-files</fileName>
          <appendAssemblyId>false</appendAssemblyId>
          <descriptors>
            <descriptor>src/assembly/zip.xml</descriptor>
          </descriptors>
        </configuration>
      </execution>
    </executions>
  </plugin>

Любые выводы будут очень полезны.

...