| <?xml version="1.0" encoding="UTF-8"?> |
| <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> |
| <relativePath>../org.eclipse.app4mc.build/pom.xml</relativePath> |
| <groupId>org.eclipse.app4mc.build</groupId> |
| <artifactId>parent</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>org.eclipse.app4mc.p2repo</artifactId> |
| <packaging>eclipse-repository</packaging> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>jboss-public-repository-group</id> |
| <name>JBoss Public Repository Group</name> |
| <url>http://repository.jboss.org/nexus/content/groups/public/</url> |
| </pluginRepository> |
| |
| <pluginRepository> |
| <id>jboss-snapshots-repository</id> |
| <name>JBoss Snapshots Repository</name> |
| <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> |
| </pluginRepository> |
| <pluginRepository> |
| <id>cbi</id> |
| <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <plugins> |
| |
| |
| <!--plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-director-plugin</artifactId> |
| <version>${tycho.version}</version> |
| |
| <executions> |
| <execution> |
| <id>materialize-products</id> |
| <goals> |
| <goal>materialize-products</goal> |
| </goals> |
| </execution> |
| |
| <execution> |
| <id>archive-products</id> |
| <goals> |
| <goal>archive-products</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin--> |
| <!-- |
| <plugin> |
| <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| <artifactId>eclipse-jarsigner-plugin</artifactId> |
| <version>1.1.3</version> |
| |
| <executions> |
| <execution> |
| <id>sign</id> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| |
| </plugin> --> |
| |
| <plugin> |
| <groupId>org.jboss.tools.tycho-plugins</groupId> |
| <artifactId>repository-utils</artifactId> |
| <version>${org.jboss.tools.tycho-plugins.version}</version> |
| |
| <executions> |
| <execution> |
| <id>generate-facade</id> |
| <phase>package</phase> |
| |
| <goals> |
| <goal>generate-repository-facade</goal> |
| </goals> |
| |
| <configuration> |
| <siteTemplateFolder>siteTemplate</siteTemplateFolder> |
| |
| <!-- Symbols are used while expanding index.html template --> |
| <symbols> |
| <update.site.name>${project.parent.name}</update.site.name> |
| <target.eclipse.version>Neon.3 (4.6.3)</target.eclipse.version> |
| </symbols> |
| |
| <associateSites> |
| <site>http://hudson.eclipse.org/hudson/job/damos-master/lastSuccessfulBuild/artifact/update-site</site> |
| <site>http://download.eclipse.org/modeling/emf/emf/updates/releases</site> |
| <site>http://download.eclipse.org/modeling/emf/compare/updates/releases</site> |
| <site>http://download.eclipse.org/rmf/updates</site> |
| <site>http://download.eclipse.org/sphinx/updates/interim</site> |
| <site>http://download.eclipse.org/ease/update/release</site> |
| <site>http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases</site> |
| <site>http://franca.github.io/franca/update_site/releases</site> |
| </associateSites> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| |
| </project> |