Community
Participate
Working Groups
<artifactId>org.eclipse.ui</artifactId>
<version>3.107.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<dependency-resolution>
<extraRequirements>
<!-- In a full build, Tycho will order things so that
o.e.jdt.annotation is compiled first. In a Gerrit build,
is it will be pulled from latest "eclipse repository"
(currently 4.6-I-builds) -->
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.jdt.annotation</id>
<versionRange>[1.1.0,2.0.0)</versionRange>
</requirement>
</extraRequirements>
</dependency-resolution>
</configuration>
</plugin>
</plugins>
</build>
</project>