У меня есть фляга, которая содержит и код сокращения карты, и несколько инструментов командной строки.
Чтобы распространить мои зависимости, я упаковываю все мои зависимости в директорию lib в моем jar-файле с помощью плагина зависимостей maven:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<excludeScope>provided</excludeScope>
</configuration>
</execution>
<execution>
<id>build-classpath</id>
<phase>generate-sources</phase>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
configure the plugin here
</configuration>
</execution>
</executions>
</plugin>
Я надеялся, что мой jar использует каталог libкогда я запускаю различные классы из командной строки*
Есть ли способ сделать это без использования maven-assembly-plugin?