compiles empty plugin with mvn clean package

This commit is contained in:
2024-05-14 19:31:21 +00:00
commit a0481f0bf4
31 changed files with 846 additions and 0 deletions

101
releng/pom.xml Normal file
View File

@@ -0,0 +1,101 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>click.kamil.eclipse-plugin.parent</artifactId>
<packaging>pom</packaging>
<name>My Eclipse Plguin Parent</name>
<parent>
<groupId>click.kamil</groupId>
<artifactId>click.kamil.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modules>
<module>targetplatforms/click.kamil.targetplatform.eclipseneon</module>
<module>../features/click.kamil.feature</module>
<module>click.kamil.updatesite</module>
<module>../plugins/click.kamil.ui</module>
</modules>
<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-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
<!-- This plugin updates the version in the pom.xml and Manifest according
to the passed value. -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<!--This updates the version of pom with the version of the Manifest
every Build automatically. -->
<!--execution> <id>versions</id> <phase>validate</phase> <goals> <goal>update-pom</goal>
</goals> </execution -->
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<!--
<target>
<artifact>
<groupId>click.kamil</groupId>
<artifactId>${target-platform-name}</artifactId>
<version>${project.version}</version>
</artifact>
</target>-->
<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>
</environments>
</configuration>
</plugin>
</plugins>
</build>
</project>