blob: 5e2aec0a2c035a37d0d61e753840c317ad2da574 [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>
<groupId>org.eclipse.blockchain</groupId>
<artifactId>org.eclipse.blockchain.releng</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho-version>1.3.0</tycho-version>
<!-- <eclipse-repo.url>http://download.eclipse.org/releases/photon</eclipse-repo.url>
<eclipse-orbit.url>http://download.eclipse.org/tools/orbit/downloads/drops/R20180606145124/repository</eclipse-orbit.url>
<xtext-url>http://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.15.0</xtext-url>
<yakindu-url>http://updates.yakindu.com/solidity/releases</yakindu-url>
<yakindu-url>http://updates.yakindu.com/solidity/milestones</yakindu-url>this contains 0.7.2 -->
<eclipse-repo.url>http://download.eclipse.org/releases/2020-06/</eclipse-repo.url>
<eclipse-orbit.url>http://download.eclipse.org/tools/orbit/downloads/drops/R20200529191137/repository</eclipse-orbit.url>
<xtext-url>http://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.22.0/</xtext-url>
<yakindu-url>http://updates.yakindu.com/statecharts/releases</yakindu-url>
<yakindu-url-2>http://updates.yakindu.com/solidity/releases</yakindu-url-2>
<emf-url>http://download.eclipse.org/modeling/emf/emf/builds/release/2.22</emf-url>
<lsp-url>http://download.eclipse.org/lsp4j/updates/releases/0.10.0/</lsp-url>
<efx-url>http://download.eclipse.org/efxclipse/runtime-released/3.6.0/site</efx-url>
<efx-osgi-url>http://downloads.efxclipse.bestsolution.at/p2-repos/openjfx-11/repository/</efx-osgi-url>
</properties>
<build>
<plugins>
<!-- Java compilation -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<!-- Packaging -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<phase>package</phase>
<id>package-feature</id>
<configuration>
<finalName>${project.artifactId}_${unqualifiedVersion}.${buildQualifier}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<!-- platform specification -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<pomDependencies>consider</pomDependencies>
<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>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>eclipse-repo</id>
<url>${eclipse-repo.url}</url>
<layout>p2</layout>
</repository>
<repository>
<id>eclipse-orbit</id>
<url>${eclipse-orbit.url}</url>
<layout>p2</layout>
</repository>
<repository>
<id>xtext-2.22</id>
<url>${xtext-url}</url>
<layout>p2</layout>
</repository>
<!-- <repository>
<id>yakindu</id>
<url>${yakindu-url}</url>
<layout>p2</layout>
</repository> -->
<repository>
<id>yakindu2</id>
<url>${yakindu-url-2}</url>
<layout>p2</layout>
</repository>
<repository>
<id>emf</id>
<url>${emf-url}</url>
<layout>p2</layout>
</repository>
<repository>
<id>lsp</id>
<url>${lsp-url}</url>
<layout>p2</layout>
</repository>
<repository>
<id>efx</id>
<url>${efx-url}</url>
<layout>p2</layout>
</repository>
<repository>
<id>efx-osgi</id>
<url>${efx-osgi-url}</url>
<layout>p2</layout>
</repository>
<!-- <repository>
<id>yakindu-missing-plugins-local-repo</id>
<url>file://${basedir}/yakindu-missing-repo/</url>
</repository> -->
</repositories>
</project>