0

IntelliJ 12 で Maven 3.0.5 を使用しており、pom ファイルは依存関係のある jar を構築するように設定されています。これでうまくいきましたが、私の質問はこれです。pom ファイルに 1 つの jar のみをビルドするように指示するにはどうすればよいですか? 現在、必要な依存関係のある jar を 1 つ取得していますが、依存関係のない別の jar も取得しており、最終的には手動で削除するだけです。私はここでチェックします:http://maven.apache.org/pom.htmlそして、それを指定しなくても、パッケージングは​​デフォルトでjarを構築するように見えます.pomのセクションで、Mavenに別の構築を指示していますjar ファイル。依存関係のある jar を 1 つだけビルドするには、pom で何を変更できますか?

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.xyz.program.test</groupId>
    <artifactId>xyz-program-test</artifactId>
    <packaging>jar</packaging>
    <version>1.2</version>
    <dependencies>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.31.0</version>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-firefox-driver</artifactId>
            <version>2.31.0</version>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-htmlunit-driver</artifactId>
            <version>2.31.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>
    </dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-firefox-driver</artifactId>
                <version>2.31.0</version>
                <exclusions>
                    <exclusion>
                        <groupId>org.seleniumhq.selenium</groupId>
                        <artifactId>selenium-remote-driver</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.0</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>com.setup.test.Setup</mainClass>
                        </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>
</project>

整形でごめんなさい。

4

1 に答える 1

1

リンク先のpomリファレンスページに書かれているように:

集約(またはマルチモジュール)

モジュールを含むプロジェクトは、マルチモジュールまたはアグリゲータープロジェクトと呼ばれます。モジュールは、このPOMがリストするプロジェクトであり、グループとして実行されます。pomパッケージプロジェクトは、それらのプロジェクトの相対ディレクトリであるモジュールとしてそれらをリストすることにより、一連のプロジェクトのビルドを集約する場合があります。

「pomパッケージプロジェクト」を作成するには、ルートプロジェクトにそのようにマークを付けます。pomパッケージ内に注意してください。

<groupId>com.xyz.program.test</groupId>
<artifactId>xyz-program-test</artifactId>
<packaging>pom</packaging>
于 2013-03-18T07:11:23.760 に答える