最近、RCP アプリケーションのビルドを PDE ビルドから tycho (0.14.0) に移動しました。これまでのところすべて正常に動作していますが、スプラッシュ スクリーンが表示されなくなりました。osgi.splashPath プロパティが正しく設定され、splash.bmp ファイルがエクスポートされたバンドル ルートに存在します (バンドルは起動時にも有効です)。パッケージングは eclipse-repository です。他に探すものはありますか?
これは pom.xml です
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>com.my.client.parent</artifactId>
<groupId>com.my</groupId>
<version>2.0.0-SNAPSHOT</version>
<relativePath>../com.my.client.parent/pom.xml</relativePath>
</parent>
<artifactId>com.my.client.product</artifactId>
<packaging>eclipse-repository</packaging>
<version>2.0.0-SNAPSHOT</version>
<properties>
<product-id>com.my</product-id>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
*編集: *プロジェクトを CI サーバーに統合したところ、美しいスプラッシュ スクリーンが表示されました。