私は最近、RCPアプリケーションのビルドをPDE Buildから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サーバと結果にプロジェクトを統合 - あなたに感謝ので、サポート、魔法のように固定された問題...
スプラッシュ・スクリーンを使用してビルド持っているあなたは、私たちに日食-リポジトリのあなたのpom.xmlを表示してくださいすることができますか? –
上記の質問 – CodeSeavers
を編集し、私の答えを元に戻しませんでした:) –