2

私のEclipseプラグインプロジェクトで。ビルド プロセス、特にテスト フェーズで表示する必要がある特定の jar がありますが、Eclipse プラグインの実行時に表示する必要はありません。tycho -surefire-pluginは、 build.propertiesの bin.includes ではなく、 MANIFEST.MFの Bundle-ClassPath に存在する jar を使用していることがわかります。tycho-surefire-pluginが MANIFEST.MF ではなく build.properties からクラスパスを取得するように強制する方法はありますか? 私が見るように、これは 2 つのファイルの通常の違いです。

私のフラグメントテストプロジェクト pom は次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<project>
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.myproject</groupId>
        <artifactId>projectparent</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <relativePath>../../../../projectparent/pom.xml</relativePath>
    </parent>

    <artifactId>com.myproject.projecttest</artifactId>
    <packaging>eclipse-test-plugin</packaging>
    <name>${project.artifactId}</name>
    <description>
        Tests for my project
    </description>

    <properties>
        <maven.site.skip>true</maven.site.skip>
        <maven.site.deploy.skip>true</maven.site.deploy.skip>
    </properties>
</project>
4

1 に答える 1

1

私があなたの質問を正しく理解していれば:

  • テスト段階でのみ使用する必要があり、製品には含めない必要があるいくつかの依存関係があります。

これを行うには、テストに target-platform-configuration プラグインを使用し、 extraRequirementsテストのみの依存関係を含めるように指定する必要があります。

ターゲットプラットフォーム構成の例:

  <plugin>
            <groupId>org.eclipse.tycho</groupId>
            <artifactId>target-platform-configuration</artifactId>
            <version>${tycho.version}</version>
            <configuration>
                <environments>
                    <environment>
                        <os>win32</os>
                        <ws>win32</ws>
                        <arch>x86</arch>
                    </environment>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86</arch>
                    </environment>
                    <environment>
                        <os>linux</os>
                        <ws>gtk</ws>
                        <arch>x86_64</arch>
                    </environment>
                </environments>
                <dependency-resolution>
                    <optionalDependencies>ignore</optionalDependencies>
                    <extraRequirements>
                        <requirement>
                            <type>eclipse-plugin</type>
                            <id>org.eclipse.ui</id>
                            <versionRange>0.0.0</versionRange>
                        </requirement>
                        <requirement>
                            <type>eclipse-plugin</type>
                             <id>org.eclipse.ui.views</id>
                            <versionRange>0.0.0</versionRange>
                        </requirement>
                        <requirement>
                            .....
                        </requirement>
                    </extraRequirements>
                </dependency-resolution>
            </configuration>
        </plugin>

これをテストポンに含めます。

お役に立てれば。

于 2016-07-22T09:47:19.933 に答える