blob: 9ff3de41b0a9fad5d1f145f6312b335aac4afb59 [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>
<groupId>org.eclipse.papyrus.cdo</groupId>
<artifactId>org.eclipse.papyrus.cdo.server.root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho-version>1.3.0</tycho-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tychoExtrasVersion>1.3.0</tychoExtrasVersion>
<jarSignerVersion>1.1.5</jarSignerVersion>
<findbugs.version>3.0.1</findbugs.version>
<xtext.version>2.16.0</xtext.version>
<maven.resources.version>3.0.2</maven.resources.version>
<maven.clean.version>3.0.0</maven.clean.version>
<mojo.execmaven.version>1.6.0</mojo.execmaven.version>
<jboss.utils.version>1.1.0</jboss.utils.version>
<maven.compiler.version>3.7.0</maven.compiler.version>
<!-- <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus.git</tycho.scmUrl> -->
<java.source.version>1.8</java.source.version>
<!-- <java.target.version>1.8</java.target.version> -->
<!-- <skipAllTests>false</skipAllTests> -->
<skipInnerTests>true</skipInnerTests>
<!-- Set buildAll to true when building this pom directly (Rather than
individual components). This will disable Papyrus Update Sites (Since they
are being built by this POM). -->
<!-- <buildAll>false</buildAll> -->
<!-- Papyrus CDO repositories. Used when we're building individual components
(vs building the parent pom including everything) -->
<!-- <papyrus.eclipse.target>photon</papyrus.eclipse.target> -->
<!-- <papyrus.repo.main>http://download.eclipse.org/modeling/mdt/papyrus/updates/nightly/${papyrus.eclipse.target}/main</papyrus.repo.main> -->
<!-- <papyrus.repo.toolsmiths>http://download.eclipse.org/modeling/mdt/papyrus/updates/nightly/${papyrus.eclipse.target}/toolsmiths</papyrus.repo.toolsmiths> -->
</properties>
<pluginRepositories>
<!-- https://repo.maven.apache.org/maven2/ is being fetched by default -->
<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>eclipse.org-mylyn</id>
<url>https://repo.eclipse.org/content/repositories/mylyn/</url>
</pluginRepository>
<pluginRepository>
<id>org.jboss.tools.tycho-plugins</id>
<url>https://repository.jboss.org/</url>
</pluginRepository>
</pluginRepositories>
<build>
<outputDirectory>bin</outputDirectory>
<pluginManagement>
<!-- redistributed plugin configurations -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven.clean.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${mojo.execmaven.version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
<version>${xtext.version}</version>
<!-- patch to fix a signer issue - https://github.com/eclipse/xtext/issues/1231 -->
<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.equinox.common</artifactId>
<version>3.10.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
<version>${jboss.utils.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>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
<optimize>true</optimize>
<showWarnings>true</showWarnings>
<!-- Tycho build using the project's JDT settings. -->
<useProjectSettings>true</useProjectSettings>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<!-- <environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment> -->
</environments>
<target>
<artifact>
<groupId>org.eclipse.papyrus.cdo.server.releng</groupId>
<artifactId>org.eclipse.papyrus.cdo.server.target</artifactId>
<version>1.0.0-SNAPSHOT</version>
</artifact>
</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
<!-- Copy cdo-server.xml file into the final built products -->
<executions>
<execution>
<id>copy-resources-linux-gtk-x86</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/products/org.eclipse.papyrus.cdo.server.product/linux/gtk/x86/configuration</outputDirectory>
<resources>
<resource>
<directory>config/</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-resources-linux-gtk-x86_64</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/products/org.eclipse.papyrus.cdo.server.product/linux/gtk/x86_64/configuration</outputDirectory>
<resources>
<resource>
<directory>config/</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-resources-macosx-cocoa-x86_64</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/products/org.eclipse.papyrus.cdo.server.product/macosx/cocoa/x86_64/configuration</outputDirectory>
<resources>
<resource>
<directory>config/</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-resources-win32-win32-x86_64</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/products/org.eclipse.papyrus.cdo.server.product/win32/win32/x86_64/configuration</outputDirectory>
<resources>
<resource>
<directory>config/</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>bundles</module>
<module>features</module>
<module>products</module>
<module>releng</module>
</modules>
</project>