Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 472631
Collapse All | Expand All

(-)pom.xml (+25 lines)
Lines 21-24 Link Here
21
  <artifactId>org.eclipse.ui</artifactId>
21
  <artifactId>org.eclipse.ui</artifactId>
22
  <version>3.107.0-SNAPSHOT</version>
22
  <version>3.107.0-SNAPSHOT</version>
23
  <packaging>eclipse-plugin</packaging>
23
  <packaging>eclipse-plugin</packaging>
24
  
25
  <build>
26
    <plugins>
27
        <plugin>
28
            <groupId>org.eclipse.tycho</groupId>
29
            <artifactId>target-platform-configuration</artifactId>
30
            <configuration>
31
                <dependency-resolution>
32
                    <extraRequirements>
33
                        <!-- In a full build, Tycho will order things so that 
34
                             o.e.jdt.annotation is compiled first. In a Gerrit build, 
35
                             is it will be pulled from latest "eclipse repository" 
36
                             (currently 4.6-I-builds)  -->
37
                        <requirement>
38
                            <type>eclipse-plugin</type>
39
                            <id>org.eclipse.jdt.annotation</id>
40
                            <versionRange>[1.1.0,2.0.0)</versionRange>
41
                        </requirement>
42
                    </extraRequirements>
43
                </dependency-resolution>
44
            </configuration>
45
        </plugin>
46
    </plugins>
47
  </build>
48
  
24
</project>
49
</project>

Return to bug 472631