| <?xml version="1.0" encoding="UTF-8"?> | 
 | <!-- | 
 |   Copyright (c) 2012, 2019 Eclipse Foundation and others. | 
 |   All rights reserved. This program and the accompanying materials | 
 |   are made available under the terms of the Eclipse Distribution License v1.0 | 
 |   which accompanies this distribution, and is available at | 
 |   http://www.eclipse.org/org/documents/edl-v10.php | 
 |  | 
 |   Contributors: | 
 |      Igor Fedorenko - initial implementation | 
 | --> | 
 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
 |   <modelVersion>4.0.0</modelVersion> | 
 |   <parent> | 
 |     <artifactId>eclipse.platform.common</artifactId> | 
 |     <groupId>eclipse.platform.common</groupId> | 
 |     <version>4.24.0-SNAPSHOT</version> | 
 |     <relativePath>../../</relativePath> | 
 |   </parent> | 
 |   <groupId>org.eclipse.pde</groupId> | 
 |   <artifactId>org.eclipse.pde.doc.user</artifactId> | 
 |   <version>3.14.1600-SNAPSHOT</version> | 
 |   <packaging>eclipse-plugin</packaging> | 
 |   <profiles> | 
 |     <profile> | 
 |       <id>build-docs</id> | 
 |       <activation> | 
 |         <property> | 
 |           <!-- workaround. activeByDefault is disabled when another profile is | 
 |             selected. --> | 
 |           <name>!longnotexistingproperty</name> | 
 |         </property> | 
 |       </activation> | 
 |       <build> | 
 |         <plugins> | 
 |           <plugin> | 
 |             <groupId>org.eclipse.tycho</groupId> | 
 |             <artifactId>target-platform-configuration</artifactId> | 
 |             <configuration> | 
 |               <dependency-resolution> | 
 |                 <extraRequirements> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.jdt.doc.isv</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.pde.build</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.pde.core</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>com.ibm.icu</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.jdt.debug</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.jdt.junit</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                   <requirement> | 
 |                     <type>eclipse-plugin</type> | 
 |                     <id>org.eclipse.update.configurator</id> | 
 |                     <versionRange>0.0.0</versionRange> | 
 |                   </requirement> | 
 |                 </extraRequirements> | 
 |               </dependency-resolution> | 
 |             </configuration> | 
 |           </plugin> | 
 |           <plugin> | 
 |             <groupId>org.apache.maven.plugins</groupId> | 
 |             <artifactId>maven-dependency-plugin</artifactId> | 
 |           </plugin> | 
 |           <plugin> | 
 |             <groupId>org.eclipse.tycho.extras</groupId> | 
 |             <artifactId>tycho-eclipserun-plugin</artifactId> | 
 |             <executions> | 
 |               <execution> | 
 |                 <id>dont_skip_me</id> | 
 |                 <phase>compile</phase> | 
 |                 <configuration> | 
 |                   <skip>false</skip> | 
 |                   <!-- call buildDoc.xml --> | 
 |                   <appArgLine>-consolelog -debug -data target/workspace -application org.eclipse.ant.core.antRunner -quiet -buildfile buildDoc.xml -Dbasedir.properties=cbi_basedirs.properties  -Declipse.javadoc=${eclipse.javadoc}</appArgLine> | 
 |                   <dependencies> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.osgi.compatibility.state</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.ant.core</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.apache.ant</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.help.base</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.pde.build</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.pde.core</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>javax.annotation</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                     <dependency> | 
 |                       <artifactId>org.eclipse.update.configurator</artifactId> | 
 |                       <type>eclipse-plugin</type> | 
 |                     </dependency> | 
 |                   </dependencies> | 
 |                 </configuration> | 
 |                 <goals> | 
 |                   <goal>eclipse-run</goal> | 
 |                 </goals> | 
 |               </execution> | 
 |             </executions> | 
 |           </plugin> | 
 |         </plugins> | 
 |       </build> | 
 |     </profile> | 
 |   </profiles> | 
 | </project> |