Community
Participate
Working Groups
<profile>
<id>api-generation</id>
<activation>
<file>
<property>
<exists>.apibuild.xml</exists>
<name>!longnotexistingproperty</name>
</file>
</property>
</activation>
<build>
<plugins>
File dotProject = new File(project.getBasedir(), ".project");
if (!dotProject.exists()) {
// no .project
project.getProperties().setProperty("eclipserun.skip", "true");
return;
}
if (dotProjectContainsApiNature(dotProject)) {
generateBuildXML();
} else {
-