Skip to content
Snippets Groups Projects
Commit a7be0fe7 authored by pmocko's avatar pmocko
Browse files

fixed build warnings

parent 9b9fc603
No related branches found
No related tags found
1 merge request!6fixed build warnings
......@@ -19,9 +19,9 @@
<properties>
<tycho-version>1.7.0</tycho-version>
<platform-version-name>2021-06</platform-version-name>
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
</properties>
<profiles>
<profile>
<id>platform-mars</id>
......@@ -103,17 +103,17 @@
<repository>
<id>mars</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
<url>http://download.eclipse.org/releases/mars</url>
</repository>
<repository>
<id>neon</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
<url>http://download.eclipse.org/releases/neon</url>
</repository>
<repository>
<id>2021-06</id>
<layout>p2</layout>
<url>${eclipse-site}</url>
<url>http://download.eclipse.org/releases/2021-06</url>
</repository>
</repositories>
<build>
......@@ -122,6 +122,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>17</release>
</configuration>
<version>3.13.0</version>
<executions>
<execution>
<id>compiletests</id>
......@@ -138,6 +142,30 @@
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<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>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment