Aviso do site do Maven: o URL do repositório 'https://maven-repository.dev.java.net/nonav/repository' é inválido

Estou usando o Maven 3.2.3 em um projeto de vários módulos. Quero gerar um relatório checkstyle e findbugs, portanto, configurei o seguinte:

    <reporting>
            <plugins>
                    <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-checkstyle-plugin</artifactId>
                            <version>2.13</version>
                            <reportSets>
                                    <reportSet>
                                            <reports>
                                                    <report>checkstyle</report>
                                            </reports>
                                    </reportSet>
                            </reportSets>
                    </plugin>
                    <plugin>
                            <groupId>org.codehaus.mojo</groupId>
                            <artifactId>findbugs-maven-plugin</artifactId>
                            <version>2.5.5</version>
                    </plugin>
                    <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-jxr-plugin</artifactId>
                            <version>2.3</version>
                    </plugin>
            </plugins>
    </reporting>

No entanto, quando eu corro

mvn site:site site:deploy

Recebo repetidamente o seguinte aviso…

[WARNING] The repository url 'https://maven-repository.dev.java.net/nonav/repository' is invalid - Repository 'java.net' will be blacklisted.

Não tenho referência a este repositório nos meus arquivos pom.xml ou no meu ~ / .m2 / settings.xml. Como posso rastrear isso e finalmente resolver o aviso?

questionAnswers(2)

yourAnswerToTheQuestion