diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-12-18 15:49:18 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-12-18 15:51:21 +0100 |
commit | 3c0c38119427089778c4bf0124821345fa136205 (patch) | |
tree | 303d7a894b36fbbbbaaaf4410ead882f2464b947 /org.eclipse.jgit.benchmarks/pom.xml | |
parent | e3922b590bef45c72cd43e9629fda5f173be74ca (diff) | |
download | jgit-3c0c38119427089778c4bf0124821345fa136205.tar.gz jgit-3c0c38119427089778c4bf0124821345fa136205.zip |
Add dependency to enable site generation for benchmark module
Change-Id: Iae4524ddc730d57993e9c6d6807282e4b07d1336
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.benchmarks/pom.xml')
-rw-r--r-- | org.eclipse.jgit.benchmarks/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/pom.xml b/org.eclipse.jgit.benchmarks/pom.xml index 4e60ab9b79..82c0a080a8 100644 --- a/org.eclipse.jgit.benchmarks/pom.xml +++ b/org.eclipse.jgit.benchmarks/pom.xml @@ -189,6 +189,33 @@ </lifecycleMappingMetadata> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.8.2</version> + <dependencies> + <dependency><!-- add support for ssh/scp --> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + <version>3.3.4</version> + </dependency> + </dependencies> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <version>3.0.0-M3</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <version>3.0.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>3.0.0</version> + </plugin> </plugins> </pluginManagement> </build> |