Skip to content

Commit

Permalink
Fix for #741: auto-start bundle to prevent missing IEventBroker
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Oct 29, 2018
1 parent ae349a8 commit 5a0d858
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions ide-test/org.codehaus.groovy.alltests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
http://wiki.eclipse.org/Tycho/Packaging_Types#eclipse-test-plugin
http://www.eclipse.org/tycho/sitedocs/tycho-surefire/tycho-surefire-plugin/test-mojo.html
-->

<configuration>
<argLine>-Xmx1G -XX:-OmitStackTraceInFastThrow</argLine>
<forkedProcessTimeoutInSeconds>7200</forkedProcessTimeoutInSeconds>
Expand All @@ -39,14 +38,23 @@
<dependencies>
<dependency>
<type>eclipse-feature</type>
<artifactId>org.eclipse.rcp</artifactId>
<artifactId>org.eclipse.platform</artifactId>
</dependency>
<dependency>
<type>eclipse-plugin</type>
<artifactId>org.eclipse.jdt.compiler.apt</artifactId>
</dependency>
</dependencies>

<!-- https://bugs.eclipse.org/bugs/show_bug.cgi?id=538564 -->
<bundleStartLevel>
<bundle>
<id>org.apache.felix.scr</id>
<autoStart>true</autoStart>
<level>0</level>
</bundle>
</bundleStartLevel>

</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 5a0d858

Please sign in to comment.