Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Antを使用してすべてのJavaファイルをコンパイルし、クラスファイルをフォルダーに保存しました。 出力フォルダー(コンパイル済み)から特定のクラスファイルのjarを作成したい。 どうすればこれを行うことができますか。 注: クラス ファイルは、プロジェクト内の別のクラスに依存します。
jarファイルに含めるファイルのみを指定するネストされたファイルセットでJarタスクを使用ant します。
ant
何かのようなもの:
<jar jarfile="pinky.jar"> <fileset dir="build/classes" > <include name="com/example/Brain.class" /> </fileset> </jar>