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 381057 | Differences between
and this patch

Collapse All | Expand All

(-)a/eclipse-parent/pom.xml (-1 / +78 lines)
Lines 84-89 Link Here
84
        <extensions>true</extensions>
84
        <extensions>true</extensions>
85
      </plugin>
85
      </plugin>
86
      <plugin>
86
      <plugin>
87
        <groupId>org.eclipse.cbi</groupId>
88
        <artifactId>maven-cbi-plugin</artifactId>
89
        <version>0.0.2-SNAPSHOT</version>
90
        <executions>
91
        	<execution>
92
        		<goals>
93
        			<goal>generate-api-build-xml</goal>
94
        		</goals>
95
        	</execution>
96
        </executions>
97
      </plugin>
98
      <plugin>
87
        <groupId>org.eclipse.tycho</groupId>
99
        <groupId>org.eclipse.tycho</groupId>
88
        <artifactId>target-platform-configuration</artifactId>
100
        <artifactId>target-platform-configuration</artifactId>
89
        <configuration>
101
        <configuration>
Lines 450-455 Link Here
450
        </repository>
462
        </repository>
451
      </repositories>
463
      </repositories>
452
    </profile>
464
    </profile>
465
    <profile>
466
    	<id>api-generation</id>
467
    	<activation>
468
    		<file>
469
    			<exists>.apibuild.xml</exists>
470
    		</file>
471
    	</activation>
472
    	<build>
473
    		<plugins>
474
    			<plugin>
475
            <groupId>org.eclipse.tycho.extras</groupId>
476
            <artifactId>tycho-eclipserun-plugin</artifactId>
477
            <!-- this is actually present in any 0.14+ version -->
478
            <version>${tycho.version}</version>
479
            <configuration>
480
		<repositories>
481
    			<repository>
482
			     <id>juno</id>
483
			     <layout>p2</layout>
484
			     <url>http://download.eclipse.org/releases/juno</url>
485
			    </repository>
486
		</repositories>
487
              <!-- this is to fix some lucene 3.x compatibility issue -->
488
              <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
489
              <!-- actuall indexer call -->
490
              <appArgLine>-application org.eclipse.ant.core.antRunner -buildfile .apibuild.xml</appArgLine>
491
              <dependencies>
492
                <!-- list of bundles that we need -->
493
                <dependency>
494
                  <artifactId>org.eclipse.ant.core</artifactId>
495
                  <type>eclipse-plugin</type>
496
                </dependency>
497
                <dependency>
498
                  <artifactId>org.apache.ant</artifactId>
499
                  <type>eclipse-plugin</type>
500
                </dependency>
501
                <dependency>
502
                  <artifactId>org.eclipse.pde.api.tools</artifactId>
503
                  <type>eclipse-plugin</type>
504
                </dependency>
505
                <dependency>
506
                  <artifactId>org.eclipse.pde.build</artifactId>
507
                  <type>eclipse-plugin</type>
508
                </dependency>
509
                <dependency>
510
                  <artifactId>org.eclipse.pde.core</artifactId>
511
                  <type>eclipse-plugin</type>
512
                </dependency>
513
                <dependency>
514
                  <artifactId>org.eclipse.equinox.launcher</artifactId>
515
                  <type>eclipse-plugin</type>
516
                </dependency>
517
              </dependencies>
518
            </configuration>
519
            <executions>
520
              <execution>
521
                <goals>
522
                  <goal>eclipse-run</goal>
523
                </goals>
524
                <phase>compile</phase>
525
              </execution>
526
            </executions>
527
          </plugin>
528
    		</plugins>
529
    	</build>
530
    </profile>
453
  </profiles>
531
  </profiles>
454
</project>
532
</project>
455
533
456
- 

Return to bug 381057