| <?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> |
| |
| <groupId>org.eclipse.papyrus.designer</groupId> |
| <artifactId>org.eclipse.papyrus.designer.configuration</artifactId> |
| <version>2.1.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>org.eclipse.papyrus.designer.configuration</name> |
| <description>Papyrus designer parent pom</description> |
| |
| <properties> |
| <component.root.name>org.eclipse.papyrus.designer</component.root.name> |
| <component.rcp.name>org.eclipse.papyrus.designer.rcp</component.rcp.name> |
| <target.version>2.1.0-SNAPSHOT</target.version> |
| |
| <tycho.version>2.2.0</tycho.version> |
| <tycho.extras.version>2.2.0</tycho.extras.version> |
| <xtend.version>2.21.0</xtend.version> |
| |
| <!-- plugin versions --> |
| <!-- use 'mvn versions:display-plugin-updates' to check for the latest --> |
| <mylyn.wikitext.version>3.0.38</mylyn.wikitext.version> |
| <maven-checkstyle-version>3.0.0</maven-checkstyle-version> |
| <jarsigner.version>1.3.2</jarsigner.version> |
| |
| <java.source>11</java.source> |
| <java.target>11</java.target> |
| |
| <!-- Platform properties --> |
| <env.ui.test>-Xms512m -Xmx2048m</env.ui.test> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <ciManagement> |
| <system>Jenkins</system> |
| <url>https://ci.eclipse.org/papyrus/view/Designer/</url> |
| </ciManagement> |
| <issueManagement> |
| <url>https://bugs.eclipse.org/bugs/buglist.cgi?product=Papyrus&component=designer</url> |
| <system>Bugzilla</system> |
| </issueManagement> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>eclipse-maven-releases</id> |
| <url>https://repo.eclipse.org/content/repositories/releases/</url> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </pluginRepository> |
| <!-- https://repo.maven.apache.org/maven2/ is being fetched by default --> |
| </pluginRepositories> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>3.0.1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <version>3.7.1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>3.0.0-M1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>3.0.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-report-plugin</artifactId> |
| <version>3.0.0-M3</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-enforcer-plugin</artifactId> |
| <version>3.0.0-M2</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>3.1.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-clean-plugin</artifactId> |
| <version>3.1.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jxr-plugin</artifactId> |
| <version>3.0.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.8.0</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.xtend</groupId> |
| <artifactId>xtend-maven-plugin</artifactId> |
| <version>${xtend.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200a-plugin</artifactId> |
| <version>${tycho.extras.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200b-plugin</artifactId> |
| <version>${tycho.extras.version}</version> |
| </plugin> |
| <!-- enable tycho build extension --> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho.version}</version> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-repository-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin><!-- enable source bundle generation --> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-source-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-packaging-plugin</artifactId> |
| <version>${tycho.version}</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-buildtimestamp-jgit</artifactId> |
| <version>${tycho.extras.version}</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <timestampProvider>jgit</timestampProvider> |
| <jgit.ignore>pom.xml</jgit.ignore> |
| <jgit.dirtyWorkingTree>ignore</jgit.dirtyWorkingTree> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-versions-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-director-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-surefire-plugin</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| <artifactId>eclipse-jarsigner-plugin</artifactId> |
| <version>${jarsigner.version}</version> |
| </plugin> |
| <plugin> |
| <!-- https://github.com/jbosstools/jbosstools-maven-plugins/wiki --> |
| <groupId>org.jboss.tools.tycho-plugins</groupId> |
| <artifactId>repository-utils</artifactId> |
| <version>2.2.0</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <configuration> |
| <source>${java.source}</source> |
| <target>${java.target}</target> |
| <optimize>true</optimize> |
| <showWarnings>true</showWarnings> |
| </configuration> |
| </plugin> |
| <!-- enable tycho build extension --> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-repository-plugin</artifactId> |
| </plugin> |
| <plugin><!-- enable source bundle generation --> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-source-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>plugin-source</id> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>feature-source</id> |
| <phase>package</phase> |
| <goals> |
| <goal>feature-source</goal> |
| </goals> |
| <configuration> |
| <excludes> |
| <plugin id="${component.rcp.name}" /> |
| </excludes> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-p2-metadata</id> |
| <phase>package</phase> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <defaultP2Metadata>false</defaultP2Metadata> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-versions-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-surefire-plugin</artifactId> |
| <configuration> |
| <failIfNoTests>false</failIfNoTests> |
| <useUIHarness>true</useUIHarness> |
| <useUIThread>true</useUIThread> |
| <!--<showEclipseLog>true</showEclipseLog> --> |
| <!--<testFailureIgnore>true</testFailureIgnore> --> |
| <jvmArgs> |
| <args>${ui.test.vmargs}</args> |
| </jvmArgs> |
| <bundleStartLevel> |
| <bundle> |
| <id>${component.servicetype}</id> |
| <level>6</level> |
| <autoStart>true</autoStart> |
| </bundle> |
| |
| <bundle> |
| <id>org.eclipse.equinox.launcher</id> |
| <level>4</level> |
| <autoStart>true</autoStart> |
| </bundle> |
| </bundleStartLevel> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <configuration> |
| <includePackedArtifacts>true</includePackedArtifacts> |
| <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource> |
| <environments> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| <target> |
| <artifact> |
| <groupId>${component.root.name}</groupId> |
| <artifactId>${component.root.name}.targetplatform.${eclipse.targetrelease}</artifactId> |
| <version>${target.version}</version> |
| </artifact> |
| </target> |
| <resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <!-- Profiles --> |
| <profiles> |
| |
| <profile> |
| <id>eclipse-sign</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <configuration> |
| <includePackedArtifacts>true</includePackedArtifacts> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200a-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>pack200-normalize</id> |
| <goals> |
| <goal>normalize</goal> |
| </goals> |
| <phase>verify</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| <artifactId>eclipse-jarsigner-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>sign</id> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| <phase>verify</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200b-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>pack200-pack</id> |
| <goals> |
| <goal>pack</goal> |
| </goals> |
| <phase>verify</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>p2-metadata</id> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| <phase>verify</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <defaultP2Metadata>false</defaultP2Metadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| <profile> |
| <id>eclipse-pack</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <configuration> |
| <includePackedArtifacts>true</includePackedArtifacts> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200a-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>pack200-normalize</id> |
| <goals> |
| <goal>normalize</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200b-plugin</artifactId> |
| <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> |
| <executions> |
| <execution> |
| <id>p2-metadata</id> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <defaultP2Metadata>false</defaultP2Metadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| <!-- Profiles to manage the target eclipse platform environment end --> |
| <!-- Profiles to manage the OS environment --> |
| <profile> |
| <id>macosx</id> |
| <activation> |
| <os> |
| <family>mac</family> |
| </os> |
| </activation> |
| <properties> |
| <ui.test.vmargs>-XstartOnFirstThread ${env.ui.test}</ui.test.vmargs> |
| </properties> |
| </profile> |
| |
| <profile> |
| <id>other-os</id> |
| <activation> |
| <os> |
| <family>!mac</family> |
| </os> |
| </activation> |
| <properties> |
| <ui.test.vmargs>${env.ui.test}</ui.test.vmargs> |
| </properties> |
| </profile> |
| |
| <profile> |
| <id>documentation-eclipse</id> |
| <activation> |
| <file> |
| <exists>src/site/mediawiki</exists> |
| </file> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.mylyn.docs</groupId> |
| <artifactId>org.eclipse.mylyn.wikitext.maven</artifactId> |
| <configuration> |
| <sourceFolder>src/site/mediawiki</sourceFolder> |
| <outputFolder>${project.build.directory}/site/mediawiki</outputFolder> |
| <multipleOutputFiles>false</multipleOutputFiles> |
| <navigationImages>true</navigationImages> |
| <formatOutput>true</formatOutput> |
| <htmlFilenameFormat>$1.html</htmlFilenameFormat> |
| <xmlFilenameFormat>$1-toc.xml</xmlFilenameFormat> |
| <helpPrefix>target/site/mediawiki</helpPrefix> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>site</phase> |
| <goals> |
| <goal>eclipse-help</goal> |
| </goals> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.mylyn.docs</groupId> |
| <artifactId>org.eclipse.mylyn.wikitext.mediawiki</artifactId> |
| <version>${mylyn.wikitext.version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| </profiles> |
| </project> |