karavan-generator/dependency-reduced-pom.xml (82 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.camel.karavan</groupId> <artifactId>karavan-generator</artifactId> <version>4.10.4</version> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/**</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>org.apache.camel.karavan.generator.KaravanGenerator</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>16</source> <target>16</target> </configuration> </plugin> </plugins> </build> <repositories> <repository> <releases> <enabled>false</enabled> </releases> <snapshots /> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/snapshots/</url> </repository> </repositories> <properties> <maven.compiler.source>17</maven.compiler.source> <version.camel-kamelet>4.10.4</version.camel-kamelet> <compiler-plugin.version>3.8.1</compiler-plugin.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <version.vertx>4.5.13</version.vertx> <surefire-plugin.version>3.0.0-M5</surefire-plugin.version> <maven.compiler.target>17</maven.compiler.target> <version.camel-core>4.10.4</version.camel-core> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.parameters>true</maven.compiler.parameters> </properties> </project>