<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/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.eclipse.tigerstripe</groupId> | |
<artifactId>org.eclipse.tigerstripe.parent</artifactId> | |
<version>0.11.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>Tigerstripe</name> | |
<description>Tigerstripe is a framework for Model Driven Engineering (MDE) with special support for the Telecommunications Industry.</description> | |
<url>https://www.eclipse.org/tigerstripe</url> | |
<ciManagement> | |
<system>Jenkins</system> | |
<url>https://ci.eclipse.org/tigerstripe/job/tigerstripe/</url> | |
</ciManagement> | |
<scm> | |
<connection>scm:git:git://git.eclipse.org/gitroot/tigerstripe/org.eclipse.tigerstripe</connection> | |
<developerConnection>scm:git:git://git.eclipse.org/gitroot/tigerstripe/org.eclipse.tigerstripe</developerConnection> | |
<url>https://git.eclipse.org/r/#/admin/projects/tigerstripe/org.eclipse.tigerstripe</url> | |
<tag>HEAD</tag> | |
</scm> | |
<distributionManagement> | |
<repository> | |
<id>repository</id> | |
<name>Repository</name> | |
<url>${distribution.repository.url}</url> | |
</repository> | |
<snapshotRepository> | |
<id>repository-snapshots</id> | |
<name>Repository Snapshots</name> | |
<url>${distribution.snapshotRepository.url}</url> | |
</snapshotRepository> | |
<site> | |
<id>website</id> | |
<name>website</name> | |
<url>${distribution.site.url}${site.url}</url> | |
</site> | |
</distributionManagement> | |
<properties> | |
<!-- Build properties --> | |
<java.version>1.8</java.version> | |
<site.url>tigerstripe/LATEST</site.url> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<!-- Default OSGi values. Might be overridden by a profile. --> | |
<osgi.arch>x86_64</osgi.arch> | |
<osgi.os>linux</osgi.os> | |
<osgi.ws>gtk</osgi.ws> | |
<junit.args>-Xms256m -Xmx1024m -XX:MaxPermSize=512m</junit.args> | |
<surefire.args>${jacocoProfiler} ${junit.args} -Dosgi.os=${osgi.os} -Dosgi.ws=${osgi.ws} -Dosgi.arch=${osgi.arch}</surefire.args> | |
<!-- Dependency versions --> | |
<eclipse-rcp.versionRange>0.0.0</eclipse-rcp.versionRange> | |
<!-- Plugin Versions --> | |
<doxia-site-renderer.version>1.8</doxia-site-renderer.version> | |
<jacoco-maven-plugin.version>0.8.1</jacoco-maven-plugin.version> | |
<maven-fluido-skin.version>1.7</maven-fluido-skin.version> | |
<site-plugin.version>3.7.1</site-plugin.version> | |
<tycho-version>1.3.0</tycho-version> | |
</properties> | |
<modules> | |
<module>core</module> | |
<module>plugins</module> | |
<module>features</module> | |
<module>releng</module> | |
</modules> | |
<repositories> | |
<repository> | |
<id>eclipse</id> | |
<layout>p2</layout> | |
<url>http://ftp.ussg.iu.edu/eclipse/releases/neon</url> | |
<!-- <url>http://download.eclipse.org/releases/neon/</url> --> | |
</repository> | |
<repository> | |
<id>eclipse-updates</id> | |
<layout>p2</layout> | |
<url>http://download.eclipse.org/eclipse/updates/4.6</url> | |
</repository> | |
</repositories> | |
<build> | |
<extensions> | |
<extension> | |
<groupId>org.apache.maven.wagon</groupId> | |
<artifactId>wagon-ssh</artifactId> | |
<version>3.0.0</version> | |
</extension> | |
</extensions> | |
<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-site-plugin</artifactId> | |
<inherited>false</inherited> | |
<configuration> | |
<skip>false</skip> | |
<skipDeploy>false</skipDeploy> | |
<generateReports>true</generateReports> | |
</configuration> | |
<executions> | |
<execution> | |
<goals> | |
<goal>attach-descriptor</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<!-- Technically we only need JaCoCo on test projects, but the plugin is | |
very lightweight so enable it for all projects for simplicity. --> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>prepare-jacoco-profiler</id> | |
<goals> | |
<goal>prepare-agent</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-site-plugin</artifactId> | |
<version>${site-plugin.version}</version> | |
<configuration> | |
<skip>true</skip> | |
<skipDeploy>true</skipDeploy> | |
<generateReports>false</generateReports> | |
</configuration> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.maven.doxia</groupId> | |
<artifactId>doxia-site-renderer</artifactId> | |
<version>${doxia-site-renderer.version}</version> | |
</dependency> | |
</dependencies> | |
</plugin> | |
<plugin> | |
<groupId>org.eclipse.tycho</groupId> | |
<artifactId>target-platform-configuration</artifactId> | |
<version>${tycho-version}</version> | |
<configuration> | |
<resolver>p2</resolver> | |
<pomDependencies>consider</pomDependencies> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.eclipse.tycho</groupId> | |
<artifactId>tycho-compiler-plugin</artifactId> | |
<version>${tycho-version}</version> | |
<configuration> | |
<source>${java.version}</source> | |
<target>${java.version}</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.eclipse.tycho</groupId> | |
<artifactId>tycho-packaging-plugin</artifactId> | |
<version>${tycho-version}</version> | |
<configuration> | |
<strictVersions>false</strictVersions> | |
</configuration> | |
</plugin> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.8.0</version> | |
<configuration> | |
<source>${java.version}</source> | |
<target>${java.version}</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
<version>${jacoco-maven-plugin.version}</version> | |
<configuration> | |
<propertyName>jacocoProfiler</propertyName> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.eclipse.tycho</groupId> | |
<artifactId>tycho-surefire-plugin</artifactId> | |
<version>${tycho-version}</version> | |
<configuration> | |
<argLine>${surefire.args}</argLine> | |
<useUIHarness>true</useUIHarness> | |
</configuration> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> | |
<reporting> | |
<plugins> | |
<!-- TODO - for some reason this fails with errors even with doclint=none --> | |
<!-- | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-javadoc-plugin</artifactId> | |
<version>3.1.0</version> | |
<configuration> | |
<doclint>none</doclint> | |
</configuration> | |
<reportSets> | |
<reportSet> | |
<id>aggregate-javadocs</id> | |
<inherited>false</inherited> | |
<reports> | |
<report>aggregate</report> | |
</reports> | |
</reportSet> | |
<reportSet> | |
<id>generate-javadocs</id> | |
<reports> | |
<report>javadoc</report> | |
</reports> | |
</reportSet> | |
</reportSets> | |
</plugin> | |
--> | |
</plugins> | |
</reporting> | |
<profiles> | |
<profile> | |
<id>32-bit</id> | |
<activation> | |
<property> | |
<name>sun.arch.data.model</name> | |
<value>32</value> | |
</property> | |
</activation> | |
<properties> | |
<osgi.arch>x86</osgi.arch> | |
</properties> | |
</profile> | |
<profile> | |
<id>Windows</id> | |
<activation> | |
<os> | |
<family>windows</family> | |
</os> | |
</activation> | |
<properties> | |
<osgi.os>win32</osgi.os> | |
<osgi.ws>win32</osgi.ws> | |
</properties> | |
</profile> | |
<profile> | |
<id>MacOS</id> | |
<activation> | |
<os> | |
<family>mac</family> | |
</os> | |
</activation> | |
<properties> | |
<osgi.os>macosx</osgi.os> | |
<osgi.ws>cocoa</osgi.ws> | |
<junit.args>-XstartOnFirstThread -Xms256m -Xmx1024m -XX:MaxPermSize=512m</junit.args> | |
</properties> | |
</profile> | |
<profile> | |
<id>env-xored</id> | |
<activation> | |
<property> | |
<name>build.env</name> | |
<value>xored</value> | |
</property> | |
</activation> | |
<properties> | |
<!--Update site with Tigerstripe specific extensions for Q7.--> | |
<tigerstripe.ecl.update.site>http://build.xored.com/browse/TS-ECL/latest/artifact/JOB1/site</tigerstripe.ecl.update.site> | |
</properties> | |
<distributionManagement> | |
<repository> | |
<id>xored</id> | |
<name>Xored Maven Repo</name> | |
<url>http://maven.xored.com/nexus/content/repositories/releases/</url> | |
</repository> | |
<snapshotRepository> | |
<id>xored</id> | |
<name>Xored Maven Repo</name> | |
<url>http://maven.xored.com/nexus/content/repositories/snapshots/</url> | |
</snapshotRepository> | |
</distributionManagement> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>build-helper-maven-plugin</artifactId> | |
<version>1.5</version> | |
<executions> | |
<execution> | |
<id>remove-old-installations</id> | |
<goals> | |
<goal>remove-project-artifact</goal> | |
</goals> | |
<configuration> | |
<removeAll>true</removeAll> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
</profiles> | |
</project> |