Skip to content

Commit

Permalink
Remove site informations from the pom
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 13, 2016
1 parent ee0a721 commit 6262a4b
Showing 1 changed file with 0 additions and 198 deletions.
198 changes: 0 additions & 198 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,6 @@
</mailingList>
</mailingLists>

<distributionManagement>
<site>
<id>github-project-site</id>
<url>gitsite:git@github.com/jline/jline3.git</url>
</site>
</distributionManagement>

<developers>
<developer>
<id>gnodet</id>
Expand Down Expand Up @@ -151,27 +144,6 @@
</dependencies>

<build>
<extensions>
<!-- Configure gitsite wagon for site deployment https://github.com/stephenc/wagon-gitsite -->
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.4</version>
</extension>

<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-manager-plexus</artifactId>
<version>1.9.4</version>
</extension>

<extension>
<groupId>com.github.stephenc.wagon</groupId>
<artifactId>wagon-gitsite</artifactId>
<version>0.5</version>
</extension>
</extensions>

<defaultGoal>install</defaultGoal>

<resources>
Expand Down Expand Up @@ -212,22 +184,6 @@

<pluginManagement>
<plugins>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
-->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -348,33 +304,6 @@
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.6</version>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
Expand Down Expand Up @@ -440,134 +369,7 @@
</mapping>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<dependencies>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<!--
Strip out reports which are useless or generate incorrect information.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<!--<report>index</report>-->
<!--<report>summary</report>-->
<report>issue-tracking</report>
<report>mailing-list</report>
<!--<report>cim</report>-->
<!--<report>scm</report>-->
<report>project-team</report>
<report>modules</report>
<report>license</report>
<report>dependencies</report>
<report>dependency-convergence</report>
<report>dependency-info</report>
<report>dependency-management</report>
<report>plugins</report>
<report>plugin-management</report>
<report>distribution-management</report>
</reports>
</reportSet>
</reportSets>
</plugin>

<!--
Doclava needs -d <output-directory> parameter, and to avoid clobber main javadoc with test-javadoc, just disable the test-javadoc for now.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<docletArtifact>
<groupId>com.google.doclava</groupId>
<artifactId>doclava</artifactId>
<version>1.0.6</version>
</docletArtifact>
<doclet>com.google.doclava.Doclava</doclet>
<source>1.8</source>
<bootclasspath>${sun.boot.class.path}</bootclasspath>
<additionalparam>
-quiet
-federate JDK http://download.oracle.com/javase/8/docs/api/index.html?
-federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-8.xml
-hdf project.name "${project.name}"
-d ${project.build.directory}/site/apidocs
</additionalparam>
<useStandardDocletOptions>false</useStandardDocletOptions>
</configuration>
<reportSets>
<reportSet>
<id>default</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.7</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
<configuration>
<linkJavadoc>true</linkJavadoc>
</configuration>
<reportSets>
<reportSet>
<id>default</id>
<reports>
<report>jxr</report>
</reports>
</reportSet>
</reportSets>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>

<profiles>
<profile>
<id>site-stage</id>

<build>
<defaultGoal>clean install site:site site:stage</defaultGoal>
</build>
</profile>
</profiles>

</project>

0 comments on commit 6262a4b

Please sign in to comment.