blob: aed6181d25542bd33582f8299e23f02bb62289b8 [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.papyrus.components</groupId>
<artifactId>org.eclipse.papyrus.components.parent</artifactId>
<version>0.0.24</version>
</parent>
<groupId>org.eclipse.papyrus.designer</groupId>
<artifactId>org.eclipse.papyrus.designer.parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Designer</name>
<description>A Papyrus component for code generation and deployment</description>
<url>https://eclipse.org/papyrus/components/designer</url>
<inceptionYear>2016</inceptionYear>
<modules>
<module>languages</module>
<module>features</module>
<module>releng</module>
<module>targetplatform</module>
</modules>
<properties>
<component.shortname>designer</component.shortname>
<component.hudson.tabname>Designer</component.hudson.tabname>
<component.fullartifactId>org.eclipse.papyrus.designer</component.fullartifactId>
<component.bugzilla.name>Designer</component.bugzilla.name>
<component.package.rootname>org.eclipse.papyrus.designer</component.package.rootname>
<component.rcp.name>org.eclipse.papyrus.designer.rcp</component.rcp.name>
<component.apibaseline.url>http://download.eclipse.org/modeling/mdt/papyrus/components/designer/</component.apibaseline.url>
<target.version>1.1.1-SNAPSHOT</target.version>
<mylyn.wikitext.version>2.4.0-SNAPSHOT</mylyn.wikitext.version>
</properties>
<!-- <mailingLists>
<mailingList>
<name>Papyrus Designer users Mailing List</name>
<post>papyrus-designer-users@eclipse.org</post>
<subscribe>https://dev.eclipse.org/mailman/listinfo/papyrus-designer-users/</subscribe>
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/papyrus-designer-users/</unsubscribe>
<archive>https://dev.eclipse.org/mailman/listinfo/papyrus-designer-users/</archive>
</mailingList>
</mailingLists> -->
<ciManagement>
<system>Hudson</system>
<url>https://hudson.eclipse.org/papyrus/view/${component.hudson.tabname}/</url>
</ciManagement>
<issueManagement>
<url>https://bugs.eclipse.org/bugs/buglist.cgi?product=Papyrus&amp;component=${component.bugzilla.name}</url>
<system>Bugzilla</system>
</issueManagement>
<developers>
<developer>
<name>Ansgar RADERMACHER</name>
<organization>CEA Tech LIST</organization>
<organizationUrl>http://www-list.cea.fr/</organizationUrl>
<id>ar</id>
</developer>
<developer>
<name>Shuai LI</name>
<organization>CEA Tech LIST</organization>
<organizationUrl>http://www-list.cea.fr/</organizationUrl>
<id>sli</id>
</developer>
</developers>
<contributors>
<contributor>
<name>Francois LE FEVRE</name>
</contributor>
</contributors>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>https://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<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>
<scm>
<url>https://git.eclipse.org/c/papyrus/org.eclipse.papyrus-${component.shortname}.git</url>
<connection>scm:git:git://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus-${component.shortname}.git</connection>
</scm>
<repositories>
<repository>
<id>pap.repo.eclipse.org</id>
<name>Papyrus Repository - Releases</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-releases/</url>
</repository>
<repository>
<id>paps.repo.eclipse.org</id>
<name>Papyrus Repository - Snapshots</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>eclipse.org-mylyn</id>
<!-- url>https://repo.eclipse.org/content/repositories/mylyn-releases/</url -->
<url>https://repo.eclipse.org/content/repositories/mylyn/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<!-- This will override the failure in the components configuration and enable the build to go through
Be careful as a yellow ball is more forgettable than a broken build though ;p -->
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.mylyn.docs</groupId>
<artifactId>org.eclipse.mylyn.wikitext.core.maven</artifactId>
<version>${mylyn.wikitext.version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.eclipse.mylyn.docs
</groupId>
<artifactId>
org.eclipse.mylyn.wikitext.core.maven
</artifactId>
<versionRange>
[2.4.0-SNAPSHOT,)
</versionRange>
<goals>
<goal>eclipse-help</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>IP</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<!-- license -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>${component.root}/releng/toolkit/etc/${component.header}</header>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>