Commit bea8da28b7a053c74337896b098f321a03dd4363

Authored by Nathanael Jourdane
1 parent 1cd371e7
Exists in master

pom.xml: Add maven site plugin

Showing 1 changed file with 14 additions and 2 deletions   Show diff stats
pom.xml
... ... @@ -72,8 +72,9 @@
72 72 <groupId>org.codehaus.mojo</groupId>
73 73 <artifactId>cobertura-maven-plugin</artifactId>
74 74 <version>2.6</version>
75   -
  75 +
76 76 </plugin>
  77 +
77 78 </plugins>
78 79 </reporting>
79 80 <!-- The files encoding. -->
... ... @@ -84,7 +85,18 @@
84 85 <build>
85 86  
86 87 <plugins>
87   -
  88 + <plugin>
  89 + <groupId>org.apache.maven.plugins</groupId>
  90 + <artifactId>maven-site-plugin</artifactId>
  91 + <version>3.3</version>
  92 + <dependencies>
  93 + <dependency>
  94 + <groupId>org.apache.maven.doxia</groupId>
  95 + <artifactId>doxia-module-markdown</artifactId>
  96 + <version>1.5</version>
  97 + </dependency>
  98 + </dependencies>
  99 + </plugin>
88 100 <!-- Tell to Maven wich Java version is used. -->
89 101 <plugin>
90 102 <artifactId>maven-compiler-plugin</artifactId>
... ...