blob: 496f54542fac97aa9a159b7208d1613aaae70379 [file] [log] [blame]
<?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>
<groupId>org.eclipse.app4mc.build</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>org.eclipse.app4mc.p2repo</artifactId>
<packaging>eclipse-repository</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.model.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.standard.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.ta.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.inchron.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.editors.sirius.design.tests</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<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.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>2019-12 (4.14)</target.eclipse.version>
</symbols>
<associateSites>
<site>http://download.eclipse.org/app4mc/components/addon/migration/snapshot/p2repo</site>
<site>http://download.eclipse.org/cbi/updates/license</site>
<site>http://download.eclipse.org/releases/2019-12</site>
<site>http://download.eclipse.org/eclipse/updates/4.14</site>
<site>http://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository</site>
<site>http://download.eclipse.org/e4/snapshots/org.eclipse.e4.tools/latest</site>
<site>http://download.eclipse.org/efxclipse/updates-released/3.6.0/site</site>
<site>http://download.efxclipse.bestsolution.at/p2-repos/openjfx-11/repository</site>
<site>http://download.eclipse.org/sphinx/updates/0.11.x</site>
<site>http://download.eclipse.org/modeling/emf/compare/updates/releases/3.3</site>
<site>http://download.eclipse.org/ease/release/0.7.0</site>
<site>http://download.eclipse.org/sirius/updates/releases/6.3.0/2019-06</site>
<site>http://hallvard.github.io/plantuml</site>
</associateSites>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonar</id>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.model.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.standard.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.ta.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.validations.inchron.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.amalthea.editors.sirius.design.tests</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.app4mc.validation.core.tests</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>prepare-package</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<configuration>
<title>APP4MC Tooling Platform</title>
<footer>Code Coverage Report for APP4MC Tooling Platform ${project.version}</footer>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>