[#3] Move client to root target - ci/cd optimization #18

Merged
pogpp merged 1 commit from pogpp/frostfs-sdk-java:feature/3_fat_jar into master 2024-10-18 11:10:01 +00:00
Showing only changes of commit 3be4e87bc1 - Show all commits

26
pom.xml
View file

@ -85,6 +85,32 @@
</executions> </executions>
<version>3.4.0</version> <version>3.4.0</version>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>../target/</outputDirectory>
<resources>
<resource>
<directory>${basedir}/target</directory>
<includes>
<include>/client*</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>