I have uploaded my artifacts to nexus using maven-deploy as a common-dependency-manager for all projects. I have included some plugins jacoco, checkstyle in parent pom which is deployed into nexus. Below is the child-pom used to download artifacts from nexus. When I run mvn install I am not able to see any changes/reports get generated for the plugins.
In settings.xml I didn't make any changes(I shouldn't)
<dependencies> (Deployed Artifacts mentioned in local child pom)
<dependency>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>1.0.0</version>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>nexus</id>
<URL><nexusurl>/repository/testing/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<URL><nexusurl>/repository/testing/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
I didn't find any solution anywhere. May I know what is the error I made?