dummy-module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.weedow</groupId>
<artifactId>dummy-module</artifactId>
<version>2.0.0</version>
</dependency><?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>
<parent>
<groupId>com.weedow</groupId>
<artifactId>spring-data-search-parent</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>dummy-module</artifactId>
<name>Keep this module as the last one in the list</name>
<packaging>pom</packaging>
<description>
nexus-staging-maven-plugin requires the last module to be not skipped for deployment
See: https://help.sonatype.com/repomanager2/staging-releases/configuring-your-project-for-deployment
</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>