mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-11-09 05:34:44 +08:00
Files
8a032bf57db2e29cf636be954da8c0cbdf2f10b0
62 lines
2.3 KiB
XML
62 lines
2.3 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|||
<modelVersion>4.0.0</modelVersion>
|
|||
|
|||
<groupId>io.confluent.test</groupId>
|
|||
<artifactId>seek-test</artifactId>
|
|||
<version>1.0</version>
|
|||
|
|||
<properties>
|
|||
<maven.compiler.source>11</maven.compiler.source>
|
|||
<maven.compiler.target>11</maven.compiler.target>
|
|||
<kafka.version>3.9.1</kafka.version>
|
|||
</properties>
|
|||
|
|||
<dependencies>
|
|||
<dependency>
|
|||
<groupId>org.apache.kafka</groupId>
|
|||
<artifactId>kafka-clients</artifactId>
|
|||
<version>${kafka.version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.slf4j</groupId>
|
|||
<artifactId>slf4j-simple</artifactId>
|
|||
<version>2.0.0</version>
|
|||
</dependency>
|
|||
</dependencies>
|
|||
|
|||
<build>
|
|||
<plugins>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-compiler-plugin</artifactId>
|
|||
<version>3.8.1</version>
|
|||
</plugin>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-shade-plugin</artifactId>
|
|||
<version>3.2.4</version>
|
|||
<executions>
|
|||
<execution>
|
|||
<phase>package</phase>
|
|||
<goals>
|
|||
<goal>shade</goal>
|
|||
</goals>
|
|||
<configuration>
|
|||
<transformers>
|
|||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|||
<mainClass>SeekToBeginningTest</mainClass>
|
|||
</transformer>
|
|||
</transformers>
|
|||
<finalName>seek-test</finalName>
|
|||
</configuration>
|
|||
</execution>
|
|||
</executions>
|
|||
</plugin>
|
|||
</plugins>
|
|||
<sourceDirectory>.</sourceDirectory>
|
|||
</build>
|
|||
</project>
|