Skip to content

Commit

Permalink
Add org.eclipse.pde.feature dependency to pull additional requirements
Browse files Browse the repository at this point in the history
Currently the tests are missing some indirect requirements defined in
the feature on their test, this adds the org.eclipse.pde.feature to make
sure all declared items are pulled in.
  • Loading branch information
laeubi committed Mar 19, 2024
1 parent 82518c5 commit 6846199
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions ui/org.eclipse.pde.ui.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@

<properties>
<defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
<testSuite>${project.artifactId}</testSuite>
<testClass>org.eclipse.pde.ui.tests.AllPDETests</testClass>
<surefire.testArgLine>-DDetectVMInstallationsJob.disabled=true</surefire.testArgLine>
<testSuite>${project.artifactId}</testSuite>
<testClass>org.eclipse.pde.ui.tests.AllPDETests</testClass>
<surefire.testArgLine>-DDetectVMInstallationsJob.disabled=true</surefire.testArgLine>
</properties>

<build>
Expand All @@ -45,6 +45,22 @@
</dependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<dependency-resolution>
<extraRequirements>
<requirement>
<!-- require the pde feature so we get additional dependencies -->
<type>eclipse-feature</type>
<id>org.eclipse.pde</id>
<versionRange>0.0.0</versionRange>
</requirement>
</extraRequirements>
</dependency-resolution>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 6846199

Please sign in to comment.