<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>org.redisson</groupId> <artifactId>redisson-parent</artifactId> <version>2.14.1-SNAPSHOT</version> <packaging>pom</packaging> <name>Redisson</name> <description>Redis based In-Memory Data Grid for Java</description> <inceptionYear>2014</inceptionYear> <url>http://redisson.org</url> <organization> <name>The Redisson Project</name> <url>http://redisson.org/</url> </organization> <properties> <maven.test.skip>true</maven.test.skip> <source.version>1.6</source.version> <test.source.version>1.8</test.source.version> <release.version>6</release.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <scm> <url>scm:git:git@github.com:redisson/redisson.git</url> <connection>scm:git:git@github.com:redisson/redisson.git</connection> <developerConnection>scm:git:git@github.com:redisson/redisson.git</developerConnection> <tag>HEAD</tag> </scm> <prerequisites> <maven>3.0.5</maven> </prerequisites> <licenses> <license> <name>Apache v2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>manual</distribution> </license> </licenses> <developers> <developer> <id>mrniko</id> <name>Nikita Koksharov</name> <email>nkoksharov@redisson.org</email> <roles> <role>Architect</role> <role>Developer</role> </roles> <timezone>+4</timezone> </developer> </developers> <modules> <module>redisson</module> <module>redisson-all</module> <module>redisson-tomcat</module> <module>redisson-spring-data</module> <module>redisson-spring-boot-starter</module> </modules> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Implementation-Build>${implementation.build}</Implementation-Build> <Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date> <X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.ju-n.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.4</version> </plugin> </plugins> </build> </profile> <profile> <id>unit-test</id> <properties> <maven.test.skip>false</maven.test.skip> </properties> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-bom</artifactId> <version>4.1.31.Final</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <directory>target</directory> <outputDirectory>${basedir}/target/classes</outputDirectory> <finalName>${project.artifactId}-${project.version}</finalName> <testOutputDirectory>${basedir}/target/test-classes</testOutputDirectory> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <testSourceDirectory>${basedir}/src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrepo</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>3.1.7</version> <configuration> <effort>Max</effort> <threshold>High</threshold> <failOnError>true</failOnError> <plugins> <plugin> <groupId>com.h3xstream.findsecbugs</groupId> <artifactId>findsecbugs-plugin</artifactId> <version>1.8.0</version> </plugin> </plugins> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>3.3.2</version> <configuration> <cveValidForHours>12</cveValidForHours> <failBuildOnCVSS>5</failBuildOnCVSS> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>${source.version}</source> <target>${source.version}</target> <release>${release.version}</release> <optimize>true</optimize> <showDeprecations>true</showDeprecations> </configuration> <executions> <execution> <id>default-testCompile</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <fork>true</fork> <source>${test.source.version}</source> <target>${test.source.version}</target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <level>public</level> <additionalparam>-Xdoclint:none</additionalparam> <quiet>true</quiet> </configuration> </plugin> </plugins> </build> </project>