blob: 639c788dd774612a3598dff279293e98260e1bf3 [file] [log] [blame]
<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>
<!-- Moka depends on generic Papyrus component POM file -->
<parent>
<groupId>org.eclipse.papyrus.components</groupId>
<artifactId>org.eclipse.papyrus.components.parent</artifactId>
<version>0.0.26</version>
<relativePath></relativePath>
</parent>
<!-- Moka root POM: general information -->
<groupId>org.eclipse.papyrus.moka</groupId>
<artifactId>org.eclipse.papyrus.moka.releng.configuration</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Moka</name>
<description>Papyrus Model Execution Platform</description>
<inceptionYear>2012</inceptionYear>
<!-- Moka properties -->
<properties>
<component.shortname>moka</component.shortname>
<component.hudson.tabname>Moka</component.hudson.tabname>
<component.fullartifactId>org.eclipse.papyrus.moka</component.fullartifactId>
<component.bugzilla.name>Moka</component.bugzilla.name>
<component.package.rootname>org.eclipse.papyrus.moka</component.package.rootname>
<component.apibaseline.url>http://download.eclipse.org/modeling/mdt/papyrus/components/moka/</component.apibaseline.url>
<eclipse.targetrelease>2019-03</eclipse.targetrelease>
<target.version>4.0.0-SNAPSHOT</target.version>
<jarSignerVersion>1.1.5</jarSignerVersion>
</properties>
<!-- Moka CI system -->
<ciManagement>
<system>Hudson</system>
<url>https://hudson.eclipse.org/papyrus/view/${component.hudson.tabname}/</url>
</ciManagement>
<!-- Moka Bugzilla -->
<issueManagement>
<url>https://bugs.eclipse.org/bugs/buglist.cgi?product=Papyrus&amp;component=${component.bugzilla.name}</url>
</issueManagement>
<!-- Moka Developpers -->
<developers>
<developer>
<name>Sebastien REVOL</name>
<organization>CEA Tech LIST</organization>
<organizationUrl>http://www-list.cea.fr/</organizationUrl>
<id>srevol</id>
</developer>
<developer>
<name>Arnaud CUCCURU</name>
<organization>CEA Tech LIST</organization>
<organizationUrl>http://www-list.cea.fr/</organizationUrl>
<id>acucurru</id>
</developer>
<developer>
<name>Jeremie TATIBOUET</name>
<organization>CEA Tech LIST</organization>
<organizationUrl>http://www-list.cea.fr/</organizationUrl>
<id>jtatibouet</id>
</developer>
</developers>
<!-- Moka Contributors -->
<contributors>
<contributor>
<name>David LOPEZ BETANCUR</name>
</contributor>
</contributors>
<scm>
<url>http://git.eclipse.org/c/papyrus/org.eclipse.papyrus-moka.git/</url>
<connection>scm:git:http://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus-moka.git</connection>
<developerConnection>scm:git:ssh://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus-moka.git</developerConnection>
</scm>
<distributionManagement>
<site>
<id>git.eclipse.org.server</id>
<url>scm:git:https://git.eclipse.org/gitroot/www.eclipse.org/papyrus/components/${component.shortname}</url>
</site>
</distributionManagement>
<!-- Location to resolve Papyrus tools -->
<repositories>
<repository>
<id>pap.repo.eclipse.org</id>
<name>Papyrus Repository - Releases</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-releases/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>paps.repo.eclipse.org</id>
<name>Papyrus Repository - Snapshots</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>license-feature</id>
<url>http://download.eclipse.org/cbi/updates/license/</url>
<layout>p2</layout>
</repository>
</repositories>
<pluginRepositories>
<!-- Location to find out maven plugins -->
<pluginRepository>
<id>org.eclipse.cbi.maven.plugins</id>
<name>Eclipse CBI</name>
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!--Profiles definition-->
<profiles>
<!-- Stable release profile. Takes +30min. Eclipse servers only -->
<profile>
<id>packAndSign</id>
<activation>
<property>
<name>SIGN</name>
<value>true</value>
</property>
</activation>
<!-- Pack200 -->
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200a-plugin</artifactId>
<version>${tychoExtrasVersion}</version>
<executions>
<execution>
<id>pack200-normalize</id>
<goals>
<goal>normalize</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>${jarSignerVersion}</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200b-plugin</artifactId>
<version>${tychoExtrasVersion}</version>
<executions>
<execution>
<id>pack200-pack</id>
<goals>
<goal>pack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>attach-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
<configuration>
<defaultP2Metadata>false</defaultP2Metadata>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Nightly profile. Artifacts can be consumed, but are not signed -->
<profile>
<id>pack</id>
<activation>
<property>
<name>SIGN</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<!-- Pack200 -->
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-pack200b-plugin</artifactId>
<version>${tychoExtrasVersion}</version>
<executions>
<execution>
<id>pack200-pack</id>
<goals>
<goal>pack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>attach-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
<configuration>
<defaultP2Metadata>false</defaultP2Metadata>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>