|
|
@ -17,6 +17,7 @@
|
|
|
|
</organization>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
<main.basedir>${project.parent.basedir}</main.basedir>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
@ -256,6 +257,41 @@
|
|
|
|
<pluginManagement>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
|
|
|
|
<version>4.5</version>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<basedir>${basedir}</basedir>
|
|
|
|
|
|
|
|
<header>${main.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>
|
|
|
|
|
|
|
|
<xsd>XML_STYLE</xsd>
|
|
|
|
|
|
|
|
</mapping>
|
|
|
|
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
|
|
|
|
<useDefaultMapping>true</useDefaultMapping>
|
|
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|