<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> <parent> <groupId>org.redisson</groupId> <artifactId>redisson-parent</artifactId> <version>3.16.9-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>redisson-helidon</artifactId> <packaging>jar</packaging> <name>Redisson/Helidon integration</name> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <basedir>${basedir}</basedir> <header>${basedir}/../header.txt</header> <quiet>false</quiet> <failIfMissing>true</failIfMissing> <aggregate>false</aggregate> <includes> <include>src/main/java/org/redisson/</include> </includes> <excludes> <exclude>target/**</exclude> </excludes> <useDefaultExcludes>true</useDefaultExcludes> <mapping> <java>JAVADOC_STYLE</java> </mapping> <strictCheck>true</strictCheck> <useDefaultMapping>true</useDefaultMapping> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <version>2.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <version>2.3.0.Final</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.helidon.microprofile.config</groupId> <artifactId>helidon-microprofile-config</artifactId> <version>[1.4.0,)</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> <version>1.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.helidon.microprofile.cdi</groupId> <artifactId>helidon-microprofile-cdi</artifactId> <version>[1.4.0,)</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>