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

23
pom.xml Normal file
View File

@@ -0,0 +1,23 @@
<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>click.kamil</groupId>
<artifactId>click.kamil.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>My Project</name>
<modules>
<module>releng</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tycho-version>0.25.0</tycho-version>
</properties>
<repositories>
<repository>
<id>eclipse-2019-03</id>
<url>http://download.eclipse.org/releases/2019-03</url>
<layout>p2</layout>
</repository>
</repositories>
</project>