one-jar プラグインの使用は本当に必要ですか? 次のアプローチを適用して、同じ目標を達成できます (アプリケーションを 1 つの jar にパッケージ化し、推移的な依存関係を含む必要なすべての依存関係をパッケージ化し、Class-Path の構成を追加し、より安定した/標準的なプラグインを使用します)、次のアプローチを適用します。
one-jar 実行可能ファイルの例 (one-jar プラグインを使用しない場合) は、次のようになります。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<!-- your further configuration here -->
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.sample.MainApp</mainClass>
<!-- your further configuration here -->
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
クラスパスと Maven をさらに操作する必要がある場合は、こちらのスタックオーバーフローの質問も確認することをお勧めします。