rspec/rules/S3505/java/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

51 lines
1.1 KiB
Plaintext

== Why is this an issue?
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)
=== Message
Remove this [dependency|plugin] declaration, it duplicates the one on line n.
=== Highlighting
* Primary: <dependency>|<plugin>
* Secondary: through to </dependency>|<plugin>
'''
== Comments And Links
(visible only on this page)
=== on 19 Jan 2016, 11:49:16 Ann Campbell wrote:
IntelliJ Duplicate Dependencies, Duplicate plugin declaration
endif::env-github,rspecator-view[]