40 lines
921 B
Plaintext
40 lines
921 B
Plaintext
There is no need to declare the same dependency or plugin twice in a project. In fact, doing so is likely to cause errors in the future when maintainers try to change or upgrade the plugin or dependency.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,java]
|
|
----
|
|
<dependency>
|
|
<groupId>com.mygroup</groupId>
|
|
<artifactId>myartifact</artifactId>
|
|
<version>1.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- ... -->
|
|
<dependency> <!-- Noncompliant -->
|
|
<groupId>com.mygroup</groupId>
|
|
<artifactId>myartifact</artifactId>
|
|
<version>1.0</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
----
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
include::highlighting.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|