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 / +71 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
              <!-- this is to fix some lucene 3.x compatibility issue -->
481
              <argLine>-XX:-UseLoopPredicate -Dhelp.lucene.tokenizer=standard</argLine>
482
              <!-- actuall indexer call -->
483
              <appArgLine>-application org.eclipse.ant.core.antRunner -buildfile .apibuild.xml</appArgLine>
484
              <dependencies>
485
                <!-- list of bundles that we need -->
486
                <dependency>
487
                  <artifactId>org.eclipse.ant.core</artifactId>
488
                  <type>eclipse-plugin</type>
489
                </dependency>
490
                <dependency>
491
                  <artifactId>org.apache.ant</artifactId>
492
                  <type>eclipse-plugin</type>
493
                </dependency>
494
                <dependency>
495
                  <artifactId>org.eclipse.pde.api.tools</artifactId>
496
                  <type>eclipse-plugin</type>
497
                </dependency>
498
                <dependency>
499
                  <artifactId>org.eclipse.pde.build</artifactId>
500
                  <type>eclipse-plugin</type>
501
                </dependency>
502
                <dependency>
503
                  <artifactId>org.eclipse.pde.core</artifactId>
504
                  <type>eclipse-plugin</type>
505
                </dependency>
506
                <dependency>
507
                  <artifactId>org.eclipse.equinox.launcher</artifactId>
508
                  <type>eclipse-plugin</type>
509
                </dependency>
510
              </dependencies>
511
            </configuration>
512
            <executions>
513
              <execution>
514
                <goals>
515
                  <goal>eclipse-run</goal>
516
                </goals>
517
                <phase>compile</phase>
518
              </execution>
519
            </executions>
520
          </plugin>
521
    		</plugins>
522
    	</build>
523
    </profile>
453
  </profiles>
524
  </profiles>
454
</project>
525
</project>
455
526
456
- 

Return to bug 381057