Skip to content

Commit d31f0ca

Browse files
committed
Move javadoc-plugin configuration to build-plugins due to javadoc:jar
1 parent bf27a32 commit d31f0ca

File tree

1 file changed

+26
-35
lines changed

1 file changed

+26
-35
lines changed

pom.xml

Lines changed: 26 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -162,42 +162,33 @@
162162
</goals>
163163
</execution>
164164
</executions>
165-
</plugin>
165+
</plugin>
166+
<plugin>
167+
<groupId>org.apache.maven.plugins</groupId>
168+
<artifactId>maven-javadoc-plugin</artifactId>
169+
<configuration>
170+
<groups>
171+
<group>
172+
<title>Maven 3 Dependency Graph</title>
173+
<packages>org.apache.maven.shared.dependency.graph*</packages>
174+
</group>
175+
</groups>
176+
<tags>
177+
<!-- from org.eclipse.aether:aether:1.1.0 -->
178+
<tag>
179+
<name>noinstantiate</name>
180+
<placement>a</placement>
181+
<head>Restriction:</head>
182+
</tag>
183+
<tag>
184+
<name>noreference</name>
185+
<placement>a</placement>
186+
<head>Restriction:</head>
187+
</tag>
188+
</tags>
189+
</configuration>
190+
</plugin>
166191
</plugins>
167192
</build>
168193

169-
<profiles>
170-
<profile>
171-
<id>reporting</id>
172-
<reporting>
173-
<plugins>
174-
<plugin>
175-
<groupId>org.apache.maven.plugins</groupId>
176-
<artifactId>maven-javadoc-plugin</artifactId>
177-
<configuration>
178-
<groups>
179-
<group>
180-
<title>Maven 3 Dependency Graph</title>
181-
<packages>org.apache.maven.shared.dependency.graph*</packages>
182-
</group>
183-
</groups>
184-
<tags>
185-
<!-- from org.eclipse.aether:aether:1.1.0 -->
186-
<tag>
187-
<name>noinstantiate</name>
188-
<placement>a</placement>
189-
<head>Restriction:</head>
190-
</tag>
191-
<tag>
192-
<name>noreference</name>
193-
<placement>a</placement>
194-
<head>Restriction:</head>
195-
</tag>
196-
</tags>
197-
</configuration>
198-
</plugin>
199-
</plugins>
200-
</reporting>
201-
</profile>
202-
</profiles>
203194
</project>

0 commit comments

Comments
 (0)