You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
6.0 KiB
XML
178 lines
6.0 KiB
XML
<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-micronaut</artifactId>
|
|
<version>3.20.2-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>redisson-micronaut-30</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<micronaut.version>3.8.6</micronaut.version>
|
|
</properties>
|
|
|
|
<name>Redisson/Micronaut v3.x.x 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>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
</compilerArgs>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-inject-java</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
</path>
|
|
<path>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-validation</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<goals>
|
|
<goal>testCompile</goal>
|
|
</goals>
|
|
<configuration>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
</compilerArgs>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-inject-java</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
</path>
|
|
<path>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-validation</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-inject</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.micronaut.cache</groupId>
|
|
<artifactId>micronaut-cache-core</artifactId>
|
|
<version>3.5.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-session</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-management</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.micronaut</groupId>
|
|
<artifactId>micronaut-inject-java</artifactId>
|
|
<version>${micronaut.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<artifactId>redisson</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<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>io.micronaut.test</groupId>
|
|
<artifactId>micronaut-test-junit5</artifactId>
|
|
<version>3.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|