This is an automated email from the ASF dual-hosted git repository. gaul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jclouds.git
commit c6a985f692204b68d056b5ff4dd96ef05ed8eba1 Author: gurkerl83 <[email protected]> AuthorDate: Sun Dec 6 20:06:06 2020 +0100 Remove maven site deployment The maven site-plugin uses the declaration "site" in the section "distribution management," which points to a git repository named "jclouds-maven-site." This git repository got never relocated during the apache migration; also, it is ancient. My impression is that the site deployment is outdated and got used in the early days of JClouds. --- project/pom.xml | 89 --------------------------------------------------------- 1 file changed, 89 deletions(-) diff --git a/project/pom.xml b/project/pom.xml index 9720a7f..85341da 100644 --- a/project/pom.xml +++ b/project/pom.xml @@ -112,13 +112,6 @@ </pluginRepository> </pluginRepositories> - <distributionManagement> - <site> - <id>jclouds-github-pages-site</id> - <url>${maven.site.url.base}/${project.version}</url> - </site> - </distributionManagement> - <developers> <developer> <name>Andrew Bayer</name> @@ -893,88 +886,6 @@ <version>2.5.1</version> </plugin> <plugin> - <artifactId>maven-site-plugin</artifactId> - <version>3.3</version> - <configuration> - <outputEncoding>${project.build.sourceEncoding}</outputEncoding> - <reportPlugins> - <plugin> - <artifactId>maven-project-info-reports-plugin</artifactId> - <reportSets> - <reportSet> - <reports> - <report>index</report> - <report>project-team</report> - <report>mailing-list</report> - <report>issue-tracking</report> - <report>license</report> - <report>scm</report> - </reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.9</version> - <configuration> - <encoding>${project.build.sourceEncoding}</encoding> - <quiet>true</quiet> - <maxmemory>512m</maxmemory> - <additionalparam>${javadoc.opts}</additionalparam> - </configuration> - <reportSets> - <reportSet> - <id>default</id> - <reports> - <report>javadoc</report> - <report>aggregate</report> - </reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <groupId>org.sonatype.maven.plugin</groupId> - <artifactId>emma-maven-plugin</artifactId> - <version>1.2</version> - <configuration> - <formats>html,xml</formats> - </configuration> - </plugin> - <plugin> - <artifactId>maven-jxr-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-surefire-report-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <targetJdk>${maven.compile.source}</targetJdk> - </configuration> - </plugin> - <plugin> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <configuration> - <xmlOutput>true</xmlOutput> - </configuration> - </plugin> - </reportPlugins> - <stagingRepositoryId>${project.distributionManagement.site.id}</stagingRepositoryId> - </configuration> - <dependencies> - <dependency> - <groupId>com.github.stephenc.wagon</groupId> - <artifactId>wagon-gitsite</artifactId> - <version>0.4.1</version> - </dependency> - </dependencies> - </plugin> - <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin>
