101 lines
3.7 KiB
XML
101 lines
3.7 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaCompilerPlugin.configuration</artifactId>
|
|
<version>0.1.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<tycho.version>1.2.0</tycho.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<eclipse-repo.url>http://download.eclipse.org/releases/oxygen</eclipse-repo.url>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>eclipse-release</id>
|
|
<url>${eclipse-repo.url}</url>
|
|
<layout>p2</layout>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.dhbwstuttgart</groupId>
|
|
<artifactId>JavaCompilerCoreOsgi</artifactId>
|
|
<version>0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<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>
|
|
<configuration>
|
|
<includeAllDependencies>true</includeAllDependencies>
|
|
</configuration>
|
|
</plugin>
|
|
<!--Enable the replacement of the SNAPSHOT version in the final product
|
|
configuration -->
|
|
<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>
|
|
<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</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>linux</os>
|
|
<ws>gtk</ws>
|
|
<arch>x86_64</arch>
|
|
</environment>
|
|
<environment>
|
|
<os>win32</os>
|
|
<ws>win32</ws>
|
|
<arch>x86</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>
|
|
|
|
</project> |