私は以下のプロジェクト構造を持っています。私は、.javaファイルを持つ異なるパッケージを含む依存関係を持つjarを準備したかったのです。は、瓶を準備しながらmavenのパッケージを含みます
プロジェクト構造:
src/com/rev/automation/utilities
src/com/rev/automation/testdata
src/com/rev/automation/pages
メインクラス:Mavenの中に瓶の中に "SRC/COM /回転/オートメーション" のパッケージを含める方法
org.openqa.selenium.remote
?私は以下のコードを使ってjarファイルを準備していますが、 "src/com/rev/automation"にあるパッケージとファイルは含まれていません。親切にMavenを使用している間、あなたはMaven Standard Directory Structureを実行する必要があり
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<!-- get all project dependencies -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- MainClass in mainfest make a executable jar -->
<archive>
<manifest>
<mainClass>org.openqa.selenium.remote.RemoteWElement</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- bind to the packaging phase -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
最終的なJARにソースファイル( '* .java')を含めるのは本当ですか?あるいは、実際にコンパイルされたクラスファイルをインクルードしようとしていますか?なぜあなたはそれをやっていますか?あなたが達成しようとしていることを私たちに教えてください。あなたにもっとお勧めの方法を提案することができます –