Bonjour,

J'ai un projet de packaging pom et 2 sous projets (un war, un jar)

Dans le pom.xml de plus haut niveau j'ai :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<reporting>
  <plugins>
... 
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
        <version>2.0-beta-1</version>
 
        <configuration>
            <tags>TODO, @todo</tags>
        </configuration>
    </plugin>
  </plugins>
</reporting>
Et quand j'exécute sur ce projet de haut niveau :
mvn site

Seul ce projet a le rapport des tags créé, mais pas ses fils.

Aurais je oublié qqch ?

Merci d'avance