WUT_Computer_Science/Programming/PSD/zin3/third/temperature-alert-visualizer/dependency-reduced-pom.xml

37 lines
1.3 KiB
XML
Raw Normal View History

2025-05-05 15:59:12 +02:00
<?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.example</groupId>
<artifactId>temperature-alert-visualizer</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.example.TemperatureAlertVisualizer</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<jackson.version>2.14.2</jackson.version>
<maven.compiler.source>11</maven.compiler.source>
<kafka.version>3.4.0</kafka.version>
</properties>
</project>